This repository has been archived on 2024-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
pacciani/examples/Makefile

11 lines
151 B
Makefile
Raw Normal View History

2017-10-12 22:36:56 +02:00
MCC=mcc
EXAMPLES=factorial hello-world primes return fibonacci mandelbrot float
all: $(EXAMPLES)
clean:
$(RM) $(EXAMPLES)
%: %.mc
$(MCC) $< -o $@