diff options
Diffstat (limited to 'usr.bin/at/Makefile')
-rw-r--r-- | usr.bin/at/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/at/Makefile b/usr.bin/at/Makefile index b3bf218..0f31ee0 100644 --- a/usr.bin/at/Makefile +++ b/usr.bin/at/Makefile @@ -13,11 +13,9 @@ MLINKS= at.1 batch.1 \ at.1 atrm.1 BINMODE= 4555 -CLEANFILES += ${MAN1} +CLEANFILES+= at.1 -.include <bsd.prog.mk> - -${MAN1}: at.man +at.1: at.man @${ECHO} Making ${.TARGET:T} from ${.ALLSRC:T}; \ sed -e \ "s@_ATSPOOL_DIR@$(ATSPOOL_DIR)@g; \ @@ -28,3 +26,5 @@ ${MAN1}: at.man s@_PERM_PATH@$(PERM_PATH)@g; \ s@_LOCKFILE@$(LOCKFILE)@g" \ < ${.ALLSRC} > ${.TARGET} + +.include <bsd.prog.mk> |