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 | 1d6b6850697730fa1156e184fd6c1b9fc7f51f32 (patch) | |
tree | b6e32f40d98cd4a59e6a8e01f9b7dd160550a149 | |
parent | d1db5c3a3f9f3215e2d9ba483d1356126fbfbadb (diff) | |
download | pttbbs-1d6b6850697730fa1156e184fd6c1b9fc7f51f32.tar pttbbs-1d6b6850697730fa1156e184fd6c1b9fc7f51f32.tar.gz pttbbs-1d6b6850697730fa1156e184fd6c1b9fc7f51f32.tar.bz2 pttbbs-1d6b6850697730fa1156e184fd6c1b9fc7f51f32.tar.lz pttbbs-1d6b6850697730fa1156e184fd6c1b9fc7f51f32.tar.xz pttbbs-1d6b6850697730fa1156e184fd6c1b9fc7f51f32.tar.zst pttbbs-1d6b6850697730fa1156e184fd6c1b9fc7f51f32.zip |
fix
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@817 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pttbbs/mbbsd/Makefile b/pttbbs/mbbsd/Makefile index 088a4262..8a79683f 100644 --- a/pttbbs/mbbsd/Makefile +++ b/pttbbs/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 |