Makefile 407 B

1234567891011121314151617181920212223
  1. CFLAGS = -Wall -O2 -pipe
  2. LDFLAGS = -s
  3. HTML_LIST = page_part1.html page_part2.html page_part3.html
  4. all: soh
  5. soh: file.o html.o html_templates.o malloc.o network.o unix.o utils.o
  6. soh.o: soh.h
  7. file.o: soh.h
  8. html.o: html.h soh.h
  9. network.o: soh.h
  10. unix.o: soh.h unix.h
  11. html_templates.o: ${HTML_LIST}
  12. ${LD} -r -b binary -z noexecstack -o html_templates.o ${HTML_LIST}
  13. .PHONY: clean
  14. clean:
  15. rm -f *.o soh