Files
CoreWar/Makefile

8 lines
168 B
Makefile
Raw Normal View History

2021-12-16 16:24:48 +01:00
OFILES = mars_main.o
2021-12-16 10:44:51 +01:00
main.out: $(OFILES)
gcc ${OFILES} -o main.out -lgraph
2021-12-16 16:24:48 +01:00
mars_main.o: mars_main.c mars_types.h
gcc -c mars_main.c
2021-12-16 10:44:51 +01:00
clean:
rm *.o *.out
.PHONY: clean