aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 96fe01c121628317d886988ad68519f9b1d9edc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Top level makefile, the real shit is at src/Makefile
#

default: all

.DEFAULT:
	cd src && "$(MAKE)" $@
	cd utils && "$(MAKE)" $@

all: sddm.pdf

calculate_limits: calculate_limits.c

sddm.pdf: sddm.tex
	pdflatex $^

clean:
	rm calculate_limits

.PHONY: clean sddm.pdf