httpd/Makefile
2024-08-07 09:38:16 +12:00

20 lines
234 B
Makefile

DC = ldc2
CFLAGS = -Jstatic -Oz
OBJS = httpd.o
all: httpd
httpd: ${OBJS}
${DC} -of=httpd ${OBJS}
.SUFFIXES: .d .o
.d.o:
${DC} ${CFLAGS} -c $<
clean:
rm -f httpd ${OBJS}
$(shell ${DC} -o- -makedeps ${OBJS})
.PHONY: all clean