aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: dbca5246a8ed26b790cdf513a0334a1c59d7e001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TARGET=servd
PREQS=server.o context.o

all: ${TARGET}

${TARGET}: ${PREQS}
	dmd -of$@ $^

%.o: %.d
	dmd -c $<

.PHONY: clean

clean:
	rm *.o servd