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
2023-04-18 22:55:48 +02:00

11 lines
151 B
Makefile

PCC=pcc
EXAMPLES=factorial hello-world primes return fibonacci mandelbrot float
all: $(EXAMPLES)
clean:
$(RM) $(EXAMPLES)
%: %.mc
$(PCC) $< -o $@