More makefile changes

This commit is contained in:
Jeremy Baxter 2023-06-03 19:00:13 +12:00
parent 5dc2a12f1e
commit 0285e0979d

View file

@ -13,13 +13,13 @@ esv: ${OBJS}
# main executable
main.o: main.d esvapi.o
${DC} ${CFLAGS} -c main.d -of$@
${DC} ${CFLAGS} -of$@ -c main.d
esvapi.o: esvapi.d
${DC} ${CFLAGS} -c esvapi.d -of$@
${DC} ${CFLAGS} -of$@ -c esvapi.d
ini.o: ${IMPORT}/dini/*.d
${DC} ${CFLAGS} -c ${IMPORT}/dini/*.d -of$@
${DC} ${CFLAGS} -of$@ -c ${IMPORT}/dini/*.d
clean:
rm -f esv ${OBJS}
@ -29,4 +29,4 @@ install: esv
cp -f esv.1 ${DESTDIR}${MANPREFIX}/man1
cp -f esv.conf.5 ${DESTDIR}${MANPREFIX}/man5
.PHONY: clean install
.PHONY: all clean install