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/fore_dnld | |
parent | 65cd6f125275606870ae0ec25bd137674236fef8 (diff) | |
download | FreeBSD-src-1696dad5fcc7d231b95a6c1ea65c45012a8d4ff2.zip FreeBSD-src-1696dad5fcc7d231b95a6c1ea65c45012a8d4ff2.tar.gz |
style.Makefile(5)'ize
Diffstat (limited to 'sbin/atm/fore_dnld')
-rw-r--r-- | sbin/atm/fore_dnld/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
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> |