aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7bca880d30d79c8eaf4c73150b00dbab2542cbe8 (plain)
1
2
3
4
5
6
7
8
9
10
TARGET=servd
PREQS=server.o serverutils.o context.o

all: ${TARGET}

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

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