diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2012-12-14 10:40:47 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2012-12-14 10:40:47 +0800 |
commit | 9f71692ea70f8eacd50d09abc577482de1e80b28 (patch) | |
tree | 14eae62049dd304923079463735b7b5aa2f4ff3d | |
parent | 68b6e0914df7f2b41e43aac6e53f0feee587d4f3 (diff) | |
download | pttbbs-9f71692ea70f8eacd50d09abc577482de1e80b28.tar pttbbs-9f71692ea70f8eacd50d09abc577482de1e80b28.tar.gz pttbbs-9f71692ea70f8eacd50d09abc577482de1e80b28.tar.bz2 pttbbs-9f71692ea70f8eacd50d09abc577482de1e80b28.tar.lz pttbbs-9f71692ea70f8eacd50d09abc577482de1e80b28.tar.xz pttbbs-9f71692ea70f8eacd50d09abc577482de1e80b28.tar.zst pttbbs-9f71692ea70f8eacd50d09abc577482de1e80b28.zip |
Add osdep dependency
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5735 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/upgrade/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pttbbs/upgrade/Makefile b/pttbbs/upgrade/Makefile index f26967d9..4ffcc2cb 100644 --- a/pttbbs/upgrade/Makefile +++ b/pttbbs/upgrade/Makefile @@ -11,8 +11,10 @@ BBSBASE= $(SRCROOT)/include/var.h UTIL_OBJS= \ ../util/util_var.o -LDLIBS+= $(UTIL_OBJS) $(SRCROOT)/common/bbs/libcmbbs.a \ - $(SRCROOT)/common/sys/libcmsys.a +LDLIBS+= $(UTIL_OBJS) \ + $(SRCROOT)/common/bbs/libcmbbs.a \ + $(SRCROOT)/common/sys/libcmsys.a \ + $(SRCROOT)/common/osdep/libosdep.a all: echo "Usually you won't build everything for upgrading, so we let you decide what to run." |