diff options
author | tb <tb@cvs.openbsd.org> | 2016-01-07 16:00:35 +0000 |
---|---|---|
committer | tb <tb@cvs.openbsd.org> | 2016-01-07 16:00:35 +0000 |
commit | 93e376267b624e9b6d6dc70ec32418c59d2a25b0 (patch) | |
tree | 9b0fedba72c0c99cf7d268ba0c169cb908c27a59 /games/boggle/mkindex/Makefile | |
parent | 58a106c10757a33412a67cbda574c32351dea1a8 (diff) |
Some basic code maintenance in games/
- in main() replace exit with return
- drop some /* NOTREACHED */ lint comments along the way.
- make more use of standard CFLAGS, esp. -Wimplicit-function-declaration
- add and sort some headers when needed
- add straightforward pledges to some programs used at compile time
discussed with and ok mestre@
Diffstat (limited to 'games/boggle/mkindex/Makefile')
-rw-r--r-- | games/boggle/mkindex/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/boggle/mkindex/Makefile b/games/boggle/mkindex/Makefile index 68eedb21581..3f7d9693917 100644 --- a/games/boggle/mkindex/Makefile +++ b/games/boggle/mkindex/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1998/09/24 06:45:06 pjanzen Exp $ +# $OpenBSD: Makefile,v 1.4 2016/01/07 16:00:31 tb Exp $ # $NetBSD: Makefile,v 1.2 1995/03/21 12:14:51 cgd Exp $ # @(#)Makefile 8.1 (Berkeley) 6/11/93 @@ -9,4 +9,5 @@ CC=${HOSTCC} install: +.include "../../Makefile.inc" .include <bsd.prog.mk> |