diff options
author | ru <ru@FreeBSD.org> | 2004-02-07 16:58:23 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-02-07 16:58:23 +0000 |
commit | ab3b47d9e82c1abc2d8a4f30d131ecbcc677ab53 (patch) | |
tree | cdc3a9ea85c57ba4499db2487372fc02f6a01a5b /tools | |
parent | 7203fc3f9b1871a1d0251a56c9508eea7e0a10e1 (diff) | |
download | FreeBSD-src-ab3b47d9e82c1abc2d8a4f30d131ecbcc677ab53.zip FreeBSD-src-ab3b47d9e82c1abc2d8a4f30d131ecbcc677ab53.tar.gz |
Convert to plain bsd.prog.mk makefile.
Reviewed by: scottl
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/aac/Makefile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/tools/tools/aac/Makefile b/tools/tools/aac/Makefile index 49aac68..4267b72 100644 --- a/tools/tools/aac/Makefile +++ b/tools/tools/aac/Makefile @@ -1,12 +1,7 @@ # $FreeBSD$ -BINDIR= /usr/local/bin -ALL= aac_checkq +PROG= aac_checkq +NOMAN= sorry +BINDIR?=/usr/local/bin -all: $(ALL) - -aac_checkq: aac_checkq.c - ${CC} -o aac_checkq aac_checkq.c - -install: ${ALL} - ${INSTALL} aac_checkq ${DESTDIR}${BINDIR} +.include <bsd.prog.mk> |