1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
# Top level makefile, the real shit is at src/Makefile # default: all .DEFAULT: cd src && "$(MAKE)" $@ cd utils && "$(MAKE)" $@ all: sddm.pdf all: sddm.pdf calculate_limits: calculate_limits.c sddm.pdf: sddm.tex pdflatex $^ clean: rm calculate_limits .PHONY: clean sddm.pdf