You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/04/08 09:07:16 UTC

svn commit: r763125 - /commons/sandbox/runtime/trunk/src/main/native/Makefile.in

Author: mturk
Date: Wed Apr  8 07:07:16 2009
New Revision: 763125

URL: http://svn.apache.org/viewvc?rev=763125&view=rev
Log:
Add Mac and HP-UX Makefile targets

Modified:
    commons/sandbox/runtime/trunk/src/main/native/Makefile.in

Modified: commons/sandbox/runtime/trunk/src/main/native/Makefile.in
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/Makefile.in?rev=763125&r1=763124&r2=763125&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/Makefile.in (original)
+++ commons/sandbox/runtime/trunk/src/main/native/Makefile.in Wed Apr  8 07:07:16 2009
@@ -56,25 +56,32 @@
 
 ARCH_DIRS=\
 	$(SRCDIR)/shared \
-	$(SRCDIR)/os/unix \
 	$(SRCDIR)/os/linux \
 	$(SRCDIR)/os/solaris \
 	$(SRCDIR)/os/darwin \
-	$(SRCDIR)/os/unix \
 	$(SRCDIR)/os/hpux \
+	$(SRCDIR)/os/unix \
 	$(SRCDIR)/os/win32
 	
 COMMON_OBJS=\
-	$(SRCDIR)/os/unix/main.$(OBJ) \
 	$(SRCDIR)/shared/dbb.$(OBJ) \
 	$(SRCDIR)/shared/error.$(OBJ)
 
 LINUX_OBJS= \
+	$(SRCDIR)/os/unix/main.$(OBJ) \
 	$(SRCDIR)/os/linux/os.$(OBJ)
 
 SOLARIS_OBJS= \
+	$(SRCDIR)/os/unix/main.$(OBJ) \
 	$(SRCDIR)/os/solaris/os.$(OBJ)
 
+DARWIN_OBJS= \
+	$(SRCDIR)/os/unix/main.$(OBJ) \
+	$(SRCDIR)/os/darwin/os.$(OBJ)
+
+HPUX_OBJS= \
+	$(SRCDIR)/os/unix/main.$(OBJ) \
+	$(SRCDIR)/os/hpux/os.$(OBJ)
 
 all: setup $(SHAREDLIB)