diff options
author | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2002-03-27 23:51:51 +0000 |
---|---|---|
committer | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2002-03-27 23:51:51 +0000 |
commit | 2f84a608aebefbafcc674992508c9f6a9e744c88 (patch) | |
tree | d86413cf2a01b5398b5a7edf0d59f3d08327b1db /NWGNUmakefile | |
parent | bd60c79db82bab053a951a3475bdd6b8567dcd33 (diff) | |
download | libapr-2f84a608aebefbafcc674992508c9f6a9e744c88.tar.gz |
Added the NetWare version of atomic.c to the build
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63197 13f79535-47bb-0310-9956-ffa450edef68
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 |