diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-05 06:55:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-05 06:55:00 +0000 |
commit | 54bfb2c914ead4f3c4593d944f07d6cc4123d9ad (patch) | |
tree | defe2e259784d84c2a65c778dad8563835ad3e76 /usr.bin/unifdef/Makefile | |
parent | 6fd54746df4717800582c7ca8f67b93bbfcd6333 (diff) |
refactor, so we don't a C function in a .h file, yuck!
Diffstat (limited to 'usr.bin/unifdef/Makefile')
-rw-r--r-- | usr.bin/unifdef/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/unifdef/Makefile b/usr.bin/unifdef/Makefile index b9e41912780..e4a50636636 100644 --- a/usr.bin/unifdef/Makefile +++ b/usr.bin/unifdef/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.7 2014/04/18 21:11:34 sthen Exp $ +# $OpenBSD: Makefile,v 1.8 2015/10/05 06:54:59 deraadt Exp $ PROG= unifdef COPTS+= -Wall -unifdef: unifdef.c unifdef.h version.h +unifdef: unifdef.c version.h .include <bsd.prog.mk> |