diff options
author | peter <peter@FreeBSD.org> | 2001-02-04 08:23:14 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-02-04 08:23:14 +0000 |
commit | a7f86be978689732e2ae26968af70815ba13ca58 (patch) | |
tree | 5298468ec8fa3edd0bbe8e8e8f32e1f790ba22a3 /sys/modules/ncp | |
parent | fe7d89e3f2b2b7670c1064862cf079c9a565fe38 (diff) | |
download | FreeBSD-src-a7f86be978689732e2ae26968af70815ba13ca58.zip FreeBSD-src-a7f86be978689732e2ae26968af70815ba13ca58.tar.gz |
Zap some bad examples:
opt_foo.h:
touch opt_foo.h
.. is unnecessary - kmod.mk does this for us.
Diffstat (limited to 'sys/modules/ncp')
-rw-r--r-- | sys/modules/ncp/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/modules/ncp/Makefile b/sys/modules/ncp/Makefile index 7c84e7f..22df62a 100644 --- a/sys/modules/ncp/Makefile +++ b/sys/modules/ncp/Makefile @@ -20,15 +20,13 @@ CFLAGS+= -DNCPBURST NOMAN= -opt_inet.h: - touch ${.TARGET} .if ${NCP_INET} > 0 +opt_inet.h: echo "#define INET 1" > ${.TARGET} .endif -opt_ipx.h: - touch ${.TARGET} .if ${NCP_IPX} > 0 +opt_ipx.h: echo "#define IPX 1" > ${.TARGET} .endif |