diff options
-rw-r--r-- | innbbsd/Makefile | 2 | ||||
-rw-r--r-- | util/Makefile | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/innbbsd/Makefile b/innbbsd/Makefile index fb82be2a..95bcc415 100644 --- a/innbbsd/Makefile +++ b/innbbsd/Makefile @@ -19,7 +19,7 @@ TARGET = $(INNBBSD) $(BBSNNRP) $(BBSLINK) CC=gcc INSTALL=cp # -OPT= -O3 -s -pipe -fomit-frame-pointer -g +OPT= -O -s -pipe -fomit-frame-pointer -g BBS_DEP = MapleBBS BBS_UTIL = $(BBS_SRC)/util diff --git a/util/Makefile b/util/Makefile index 06a4e471..e291cdee 100644 --- a/util/Makefile +++ b/util/Makefile @@ -1,18 +1,18 @@ -# $Id: Makefile,v 1.23 2003/02/11 06:03:31 victor Exp $ +# $Id: Makefile,v 1.24 2003/02/17 18:37:48 in2 Exp $ BBSHOME?=$(HOME) OSTYPE!=uname # FreeBSD CC_FreeBSD= gcc -CFLAGS_FreeBSD= -DFreeBSD -pipe -Wall -g -O3 -DHAVE_SETPROCTITLE -DBBSHOME='"$(BBSHOME)"' -I../include +CFLAGS_FreeBSD= -DFreeBSD -pipe -Wall -g -O -DHAVE_SETPROCTITLE -DBBSHOME='"$(BBSHOME)"' -I../include LIBS_FreeBSD= LIBMAIL_FreeBSD=-lutil LIBCHAT_FreeBSD= # Linux CC_linux= gcc -CFLAGS_linux= -DLinux -pipe -Wall -g -O3 -DHAVE_DES_CRYPT -DBBSHOME='"$(BBSHOME)"' -I../include +CFLAGS_linux= -DLinux -pipe -Wall -g -O -DHAVE_DES_CRYPT -DBBSHOME='"$(BBSHOME)"' -I../include LIBS_linux= -lresolv LIBMAIL_linux= LIBCHAT_linux= -lcrypt |