diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2006-08-14 13:28:53 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2006-08-14 13:28:53 +0000 |
| commit | 8b3ae668b13db776ced151f20e9ad3d23eca545d (patch) | |
| tree | 1e71be6b57099620ee5d40dccf4353f18eac3e0b /sys/modules | |
| parent | 1e49a13618d52cb75f5c98befa01935e9785bbc0 (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/if_ef/Makefile | 8 | ||||
| -rw-r--r-- | sys/modules/if_ppp/Makefile | 6 | ||||
| -rw-r--r-- | sys/modules/netgraph/mppc/Makefile | 2 | ||||
| -rw-r--r-- | sys/modules/sound/sound/Makefile | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/sys/modules/if_ef/Makefile b/sys/modules/if_ef/Makefile index 8a83ac0920a36..dc40213c7181c 100644 --- a/sys/modules/if_ef/Makefile +++ b/sys/modules/if_ef/Makefile @@ -19,16 +19,16 @@ CFLAGS+= -DEF_DEBUG #ETHER_SNAP= opt_inet.h: - echo "#define INET 1" > opt_inet.h + echo "#define INET 1" > ${.TARGET} opt_ipx.h: - echo "#define IPX 1" > opt_ipx.h + echo "#define IPX 1" > ${.TARGET} opt_ef.h: - touch opt_ef.h + :> ${.TARGET} .for frame in ETHER_II ETHER_8023 ETHER_8022 ETHER_SNAP .if defined(${frame}) - echo "#define ${frame} 1" >> opt_ef.h + echo "#define ${frame} 1" >> ${.TARGET} .endif .endfor .endif diff --git a/sys/modules/if_ppp/Makefile b/sys/modules/if_ppp/Makefile index 1be2e0206ce4f..5ba503905c655 100644 --- a/sys/modules/if_ppp/Makefile +++ b/sys/modules/if_ppp/Makefile @@ -22,16 +22,16 @@ SRCS+= ppp_deflate.c .if !defined(KERNBUILDDIR) .if ${PPP_INET} > 0 opt_inet.h: - echo "#define INET 1" >> ${.TARGET} + echo "#define INET 1" > ${.TARGET} .endif .if ${PPP_IPX} > 0 opt_ipx.h: - echo "#define IPX ${PPP_IPX}" >> ${.TARGET} + echo "#define IPX ${PPP_IPX}" > ${.TARGET} .endif opt_ppp.h: - touch ${.TARGET} + :> ${.TARGET} .if ${PPP_BSDCOMP} > 0 echo "#define PPP_BSDCOMP ${PPP_BSDCOMP}" >> ${.TARGET} .endif diff --git a/sys/modules/netgraph/mppc/Makefile b/sys/modules/netgraph/mppc/Makefile index 968e2ac007dc6..40b3717136f48 100644 --- a/sys/modules/netgraph/mppc/Makefile +++ b/sys/modules/netgraph/mppc/Makefile @@ -20,7 +20,7 @@ SRCS+= sha1.c .if !defined(KERNBUILDDIR) opt_netgraph.h: - touch ${.TARGET} + :> ${.TARGET} .if ${NETGRAPH_MPPC_COMPRESSION} > 0 echo "#define NETGRAPH_MPPC_COMPRESSION 1" >> ${.TARGET} .endif diff --git a/sys/modules/sound/sound/Makefile b/sys/modules/sound/sound/Makefile index 5615a0c8ea59f..f2e6eae7676ac 100644 --- a/sys/modules/sound/sound/Makefile +++ b/sys/modules/sound/sound/Makefile @@ -22,7 +22,7 @@ EXPORT_SYMS= YES # XXX evaluate # existing one from KERNBUILDDIR which possibly has DEV_ISA defined so # sound.ko is always built without isadma support. opt_isa.h: - touch ${.TARGET} + :> ${.TARGET} .else SRCS+= sndbuf_dma.c |
