diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-02-18 02:38:01 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-02-18 02:38:01 +0800 |
commit | 4e7f84260166aee83385638b7165319568863c78 (patch) | |
tree | 7ee73e756f6bd7f9211b0a4734742993bb5e5776 /util | |
parent | 0e3b5714c736d15c23f100551007f3de25201188 (diff) | |
download | pttbbs-4e7f84260166aee83385638b7165319568863c78.tar pttbbs-4e7f84260166aee83385638b7165319568863c78.tar.gz pttbbs-4e7f84260166aee83385638b7165319568863c78.tar.bz2 pttbbs-4e7f84260166aee83385638b7165319568863c78.tar.lz pttbbs-4e7f84260166aee83385638b7165319568863c78.tar.xz pttbbs-4e7f84260166aee83385638b7165319568863c78.tar.zst pttbbs-4e7f84260166aee83385638b7165319568863c78.zip |
-O3 => -O
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@665 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'util')
-rw-r--r-- | util/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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 |