diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-22 18:01:48 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-22 18:01:48 +0000 |
commit | 9203e2e6cffec59281fade1b5508d0da6d116a39 (patch) | |
tree | 651948a439926c88ce2812c0d3aa7a9e4678a47e /games/bs/Makefile | |
parent | 0a2aa220d1dfef6dc5a4a45e698f97a2c2cd1e3c (diff) |
gcc 2.8.1 -O2 bug
Diffstat (limited to 'games/bs/Makefile')
-rw-r--r-- | games/bs/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games/bs/Makefile b/games/bs/Makefile index b98b9e41436..fcc6f3530a4 100644 --- a/games/bs/Makefile +++ b/games/bs/Makefile @@ -1,9 +1,11 @@ -# $OpenBSD: Makefile,v 1.3 1997/09/21 11:35:37 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 1998/07/22 18:01:47 millert Exp $ PROG= bs MAN= bs.6 DPADD= ${LIBCURSES} ${LIBTERMLIB} LDADD= -lcurses -ltermlib HIDEGAME=hidegame +# XXX - -O2 exposes a gcc optimizer bug +CFLAGS= -O ${DEBUG} .include <bsd.prog.mk> |