aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2007-07-11 21:38:28 +0000
committerGunter Knauf <gk@gknw.de>2007-07-11 21:38:28 +0000
commit6a88eab06752745e0cff027379dd1281503bebe8 (patch)
treeb49d8205a1c635df6fc457c523d3b2182974c7fe
parenta4f36558fc1bb9c9f7f0b2f977a2e407905ccd88 (diff)
updated makefile to compile nwos.c.
-rw-r--r--lib/Makefile.netware6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware
index 36a336761..e5ee92246 100644
--- a/lib/Makefile.netware
+++ b/lib/Makefile.netware
@@ -123,10 +123,10 @@ CFLAGS += -Wall # -pedantic
ifeq ($(LIBARCH),LIBC)
PRELUDE = $(SDK_LIBC)/imports/libcpre.gcc.o
else
- # PRELUDE = $(SDK_CLIB)/imports/clibpre.gcc.o
+ PRELUDE = $(SDK_CLIB)/imports/clibpre.gcc.o
# to avoid the __init_* / __deinit_* whoes dont use prelude from NDK
# http://www.gknw.net/development/mk_nlm/gcc_pre.zip
- PRELUDE = $(NDK_ROOT)/pre/prelude.o
+ # PRELUDE = $(NDK_ROOT)/pre/prelude.o
CFLAGS += -include $(NDKBASE)/nlmconv/genlm.h
endif
endif
@@ -207,7 +207,7 @@ endif
# Makefile.inc provides the CSOURCES and HHEADERS defines
include Makefile.inc
-OBJS := $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(CSOURCES)))
+OBJS := $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(CSOURCES))) $(OBJDIR)/nwos.o
OBJL = $(OBJS) $(OBJDIR)/nwlib.o $(LDLIBS)