diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-05-01 16:14:37 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-05-01 16:14:37 +0800 |
commit | c7b2bea1e969c6dbc240e9e7805675fed6b6efdc (patch) | |
tree | c381a665f4d2e02f4344d59dfc04e552770ed951 /mbbsd/Makefile | |
parent | d3d36bf1895e39a0b07d41b24b93823cc63f1cfe (diff) | |
download | pttbbs-c7b2bea1e969c6dbc240e9e7805675fed6b6efdc.tar pttbbs-c7b2bea1e969c6dbc240e9e7805675fed6b6efdc.tar.gz pttbbs-c7b2bea1e969c6dbc240e9e7805675fed6b6efdc.tar.bz2 pttbbs-c7b2bea1e969c6dbc240e9e7805675fed6b6efdc.tar.lz pttbbs-c7b2bea1e969c6dbc240e9e7805675fed6b6efdc.tar.xz pttbbs-c7b2bea1e969c6dbc240e9e7805675fed6b6efdc.tar.zst pttbbs-c7b2bea1e969c6dbc240e9e7805675fed6b6efdc.zip |
fix
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@817 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/Makefile')
-rw-r--r-- | mbbsd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/Makefile b/mbbsd/Makefile index 088a4262..8a79683f 100644 --- a/mbbsd/Makefile +++ b/mbbsd/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.22 2003/05/01 08:12:17 in2 Exp $ +# $Id: Makefile,v 1.23 2003/05/01 08:14:37 in2 Exp $ # 訂義基本初值 BBSHOME?= $(HOME) @@ -33,12 +33,12 @@ PTT_LIBS+= $(LIBS_$(OSTYPE)) # 若有定義 GDB或 DEBUG, 則加入 -g , 否則用 -O .if defined(GDB) || defined(DEBUG) CFLAGS= -g $(PTT_CFLAGS) -LDFLAGS= -g $(PTT_LDFLAGS) $(PTT_LIBS) $(EXT_LIBS) +LDFLAGS= -g $(PTT_LDFLAGS) $(PTT_LIBS) .else CFLAGS+= -O2 -Os -fomit-frame-pointer -fstrength-reduce \ -fthread-jumps -fexpensive-optimizations \ $(PTT_CFLAGS) -LDFLAGS+= -O2 $(PTT_LDFLAGS) $(PTT_LIBS) +LDFLAGS+= -O2 $(PTT_LDFLAGS) $(PTT_LIBS) $(EXT_LIBS) .endif # 若有定義 DEBUG, 則在 CFLAGS內定義 DEBUG |