diff options
Diffstat (limited to 'NWGNUmakefile')
-rw-r--r-- | NWGNUmakefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/NWGNUmakefile b/NWGNUmakefile index c43193cfe..4a674a844 100644 --- a/NWGNUmakefile +++ b/NWGNUmakefile @@ -238,6 +238,7 @@ FILES_nlm_exports = \ # Paths must all use the '/' character # FILES_lib_objs = \ + $(OBJDIR)/apr_atomic.o \ $(OBJDIR)/apr_cpystrn.o \ $(OBJDIR)/apr_fnmatch.o \ $(OBJDIR)/apr_getpass.o \ @@ -318,6 +319,10 @@ install :: nlms FORCE # Any specialized rules here # +$(OBJDIR)/%.o: atomic/netware/%.c $(OBJDIR)\cc.opt + @echo Compiling $< + $(CC) atomic\netware\$(<F) -o=$(OBJDIR)\$(@F) @$(OBJDIR)\cc.opt + $(OBJDIR)/%.o: strings/%.c $(OBJDIR)\cc.opt @echo Compiling $< $(CC) strings\$(<F) -o=$(OBJDIR)\$(@F) @$(OBJDIR)\cc.opt |