Makefile 480 B

12345678910111213141516171819202122232425
  1. CC=gcc
  2. CFLAGS=-g
  3. LDFLAGS=-g
  4. elea: \
  5. elea.o \
  6. governo.o \
  7. accumulatore.o \
  8. memoria.o \
  9. ricerca.o \
  10. algebra.o \
  11. telescrivente.o \
  12. hello_world.o \
  13. long_division.o
  14. hello_world.c: hello_world.elea-txt caratteri.py
  15. python caratteri.py $<
  16. long_division.c: long_division.elea-txt caratteri.py
  17. python caratteri.py $<
  18. clean: FORCE
  19. @rm -f elea *.o tags hello_world.c long_division.c
  20. .PHONY: FORCE