makefile-example/Makefile
2025-11-03 17:17:11 +01:00

11 lines
119 B
Makefile

example: main.o foo.o
$(CC) main.o foo.o -o $@
%.o: %.c
$(CC) -c $< -o $@
.PHONY: clean
clean:
rm -f example *.o