diff options
author | obrien <obrien@FreeBSD.org> | 2003-08-03 15:17:28 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-08-03 15:17:28 +0000 |
commit | 1696dad5fcc7d231b95a6c1ea65c45012a8d4ff2 (patch) | |
tree | 7f97785ad426a4290fe460c2f5834d0031f9fb2d /sbin/atm | |
parent | 65cd6f125275606870ae0ec25bd137674236fef8 (diff) | |
download | FreeBSD-src-1696dad5fcc7d231b95a6c1ea65c45012a8d4ff2.zip FreeBSD-src-1696dad5fcc7d231b95a6c1ea65c45012a8d4ff2.tar.gz |
style.Makefile(5)'ize
Diffstat (limited to 'sbin/atm')
-rw-r--r-- | sbin/atm/Makefile | 4 | ||||
-rw-r--r-- | sbin/atm/Makefile.inc | 4 | ||||
-rw-r--r-- | sbin/atm/atm/Makefile | 13 | ||||
-rw-r--r-- | sbin/atm/fore_dnld/Makefile | 13 | ||||
-rw-r--r-- | sbin/atm/ilmid/Makefile | 13 |
5 files changed, 15 insertions, 32 deletions
diff --git a/sbin/atm/Makefile b/sbin/atm/Makefile index f17c173..5184d7b 100644 --- a/sbin/atm/Makefile +++ b/sbin/atm/Makefile @@ -1,10 +1,7 @@ -# -# # =================================== # HARP | Host ATM Research Platform # =================================== # -# # This Host ATM Research Platform ("HARP") file (the "Software") is # made available by Network Computing Services, Inc. ("NetworkCS") # "AS IS". NetworkCS does not provide maintenance, improvements or @@ -24,7 +21,6 @@ # notice must be reproduced on all copies. # # @(#) $FreeBSD$ -# SUBDIR= atm \ fore_dnld \ diff --git a/sbin/atm/Makefile.inc b/sbin/atm/Makefile.inc index dece109..8671486 100644 --- a/sbin/atm/Makefile.inc +++ b/sbin/atm/Makefile.inc @@ -1,10 +1,7 @@ -# -# # =================================== # HARP | Host ATM Research Platform # =================================== # -# # This Host ATM Research Platform ("HARP") file (the "Software") is # made available by Network Computing Services, Inc. ("NetworkCS") # "AS IS". NetworkCS does not provide maintenance, improvements or @@ -25,6 +22,5 @@ # # @(#) $FreeBSD$ # -# .include "../Makefile.inc" diff --git a/sbin/atm/atm/Makefile b/sbin/atm/atm/Makefile index 494552d..000cdc7 100644 --- a/sbin/atm/atm/Makefile +++ b/sbin/atm/atm/Makefile @@ -1,10 +1,7 @@ -# -# # =================================== # HARP | Host ATM Research Platform # =================================== # -# # This Host ATM Research Platform ("HARP") file (the "Software") is # made available by Network Computing Services, Inc. ("NetworkCS") # "AS IS". NetworkCS does not provide maintenance, improvements or @@ -25,16 +22,16 @@ # # @(#) $FreeBSD$ # -# PROG= atm SRCS= atm.c atm_fore200.c atm_eni.c atm_inet.c atm_print.c \ atm_set.c atm_show.c atm_subr.c MAN= atm.8 -CFLAGS+= -I${.CURDIR}/../../../sys -WARNS= 6 -LDADD+= -latm -DPADD+= ${LIBATM} +WARNS?= 6 +CFLAGS+= -I${.CURDIR}/../../../sys + +DPADD= ${LIBATM} +LDADD= -latm .include <bsd.prog.mk> diff --git a/sbin/atm/fore_dnld/Makefile b/sbin/atm/fore_dnld/Makefile index fa95175..33bba06 100644 --- a/sbin/atm/fore_dnld/Makefile +++ b/sbin/atm/fore_dnld/Makefile @@ -1,10 +1,7 @@ -# -# # =================================== # HARP | Host ATM Research Platform # =================================== # -# # This Host ATM Research Platform ("HARP") file (the "Software") is # made available by Network Computing Services, Inc. ("NetworkCS") # "AS IS". NetworkCS does not provide maintenance, improvements or @@ -25,15 +22,15 @@ # # @(#) $FreeBSD$ # -# PROG= fore_dnld MAN= fore_dnld.8 SRCS= fore_dnld.c pca200e.c -CFLAGS+= -I${.CURDIR}/../../../sys -WARNS= 6 -LDADD+= -latm -DPADD+= ${LIBATM} +WARNS?= 6 +CFLAGS+= -I${.CURDIR}/../../../sys + +DPADD= ${LIBATM} +LDADD= -latm .include <bsd.prog.mk> diff --git a/sbin/atm/ilmid/Makefile b/sbin/atm/ilmid/Makefile index d62231c..2428b6e 100644 --- a/sbin/atm/ilmid/Makefile +++ b/sbin/atm/ilmid/Makefile @@ -1,10 +1,7 @@ -# -# # =================================== # HARP | Host ATM Research Platform # =================================== # -# # This Host ATM Research Platform ("HARP") file (the "Software") is # made available by Network Computing Services, Inc. ("NetworkCS") # "AS IS". NetworkCS does not provide maintenance, improvements or @@ -25,14 +22,14 @@ # # @(#) $FreeBSD$ # -# PROG= ilmid MAN= ilmid.8 -CFLAGS+= -I${.CURDIR}/../../../sys -LDADD+= -latm -DPADD+= ${LIBATM} -WARNS= 6 +WARNS?= 6 +CFLAGS+= -I${.CURDIR}/../../../sys + +DPADD= ${LIBATM} +LDADD= -latm .include <bsd.prog.mk> |