2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

$? instead of $< to build main.@O@, because $< is valid only in nmake inference rules and the effect of using $< is the same

This commit is contained in:
David Lawrence
1999-10-06 19:59:14 +00:00
parent f46a6d4e43
commit 36444427e4

View File

@@ -43,7 +43,7 @@ SRCS = client.c interfacemgr.c main.c query.c rootns.c server.c \
@BIND9_MAKE_RULES@
main.@O@: main.c
${CC} ${ALL_CFLAGS} -DVERSION=\"${VERSION}\" -c $<
${CC} ${ALL_CFLAGS} -DVERSION=\"${VERSION}\" -c $?
printmsg.@O@: ${srcdir}/../tests/printmsg.c
${CC} -c -o printmsg.@O@ ${ALL_CFLAGS} -I${srcdir}/../tests \