]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RAW/Makefile
Updated task
[u/mrichter/AliRoot.git] / RAW / Makefile
index c486b1caddf444db59107dbbabbf105768274f5e..bdcf1d29c05d8ec76645d5e15829d238257bf39c 100644 (file)
@@ -62,9 +62,25 @@ endif
 
 ##### MACROS and TARGETS #####
 
-include Make-macros
-
-
-##### DEPENDENCIES #####
-
-#include Make-depend
+ifeq ($(PLATFORM),macosx)
+# We need to make both the .dylib and the .so
+               $(LD) $(SOFLAGS)$@ $(LDFLAGS) $^ $(OutPutOpt) $@
+ifneq ($(subst $(MACOSX_MINOR),,1234),1234)
+ifeq ($(MACOSX_MINOR),4)
+               ln -sf $@ $(subst .$(DllSuf),.so,$@)
+else
+               $(LD) -bundle -undefined $(UNDEFOPT) $(LDFLAGS) $^ \
+                  $(OutPutOpt) $(subst .$(DllSuf),.so,$@)
+endif
+endif
+else
+ifeq ($(PLATFORM),win32)
+               bindexplib $* $^ > $*.def
+               lib -nologo -MACHINE:IX86 $^ -def:$*.def \
+                  $(OutPutOpt)$(EVENTLIB)
+               $(LD) $(SOFLAGS) $(LDFLAGS) $^ $*.exp $(LIBS) \
+                  $(OutPutOpt)$@
+else
+               $(LD) $(SOFLAGS) $(LDFLAGS) $^ $(OutPutOpt) $@ $(EXPLLINKLIBS)
+endif
+endif