More makefile changes
This commit is contained in:
parent
5dc2a12f1e
commit
0285e0979d
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue