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

all: ${TARGET}

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

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