diff options
author | Guenter Knauf <lists@gknw.net> | 2014-01-02 20:40:33 +0100 |
---|---|---|
committer | Guenter Knauf <lists@gknw.net> | 2014-01-02 20:40:33 +0100 |
commit | e9b9e287c13f88463170025ff87b8df12a178d6b (patch) | |
tree | 2ed0da0be850d8f0202ecf0e0c3469f62ffdc866 | |
parent | 030303fa999d1457b7cd24efab8dfcb5dec54333 (diff) |
Fix NetWare build for vtls files.
-rw-r--r-- | lib/Makefile.netware | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware index 058047bb2..bafd32ffa 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -315,10 +315,12 @@ endif # Makefile.inc provides the CSOURCES and HHEADERS defines include Makefile.inc -OBJS := $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(CSOURCES))) $(OBJDIR)/nwos.o +OBJS := $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(notdir $(CSOURCES)))) $(OBJDIR)/nwos.o OBJL = $(OBJS) $(OBJDIR)/nwlib.o $(LDLIBS) +vpath %.c . vtls + all: lib nlm nlm: prebuild $(TARGET).nlm |