]> git.saurik.com Git - wxWidgets.git/blobdiff - src/makelib.env.in
removed duplicate strdup definition for CW MSL V 7
[wxWidgets.git] / src / makelib.env.in
index ca760d7c5870bb8baed39f9815bac6dad2ee0c42..0e6a61b6bb5ad19a9e135768ed631827967c5997 100644 (file)
@@ -41,17 +41,14 @@ TARGETLIB_LINK2 = $(TARGET_LIBNAME).so
 
 TARGETLIB_SONAME = @WX_TARGET_LIBRARY_SONAME@
 
-# Clears all default suffixes
-.SUFFIXES:     .o .cpp .c .cxx
+%.o : %.c
+       $(CC) -c $(CFLAGS) $(PICFLAGS) -o $@ $<
 
-.c.o :
-       $(CCC) -c @DEP_INFO_FLAGS@ $(CFLAGS) $(PICFLAGS) -o $@ $<
+%.o : %.cpp
+       $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $<
 
-.cpp.o :
-       $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
-
-.cxx.o :
-       $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
+%.o : %.cxx
+       $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $<
 
 # the comment at the end of the next line is needed because otherwise autoconf
 # would remove this line completely - it contains a built-in hack to remove
@@ -60,28 +57,25 @@ VPATH = @PATH_IFS@$(top_srcdir)/$(libsrc_dir) # ':' for autoconf
 
 include $(top_builddir)/src/make.env
 
-
 all: libtype_@WX_TARGET_LIBRARY_TYPE@
 
-libtype_so: CREATE_LINKS
+libtype_so: $(top_builddir)/lib/$(TARGETLIB_SHARED)
 
-libtype_a: $(TARGETLIB_STATIC)
+libtype_a: $(top_builddir)/lib/$(TARGETLIB_STATIC)
 
-
-$(TARGETLIB_SHARED): $(OBJECTS)
+$(top_builddir)/lib/$(TARGETLIB_SHARED): $(OBJECTS)
        @$(INSTALL) -d $(top_builddir)/lib
-       $(SHARED_LD) $(top_builddir)/lib/$@ $(TARGETLIB_SONAME) $(OBJECTS)
-
-CREATE_LINKS: $(TARGETLIB_SHARED)
+       $(SHARED_LD) $@ $(TARGETLIB_SONAME) $(OBJECTS)
        cd $(top_builddir)/lib \
                && $(RM) $(TARGETLIB_LINK1) $(TARGETLIB_LINK2) \
                && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK1) \
                && $(LN_S) $(TARGETLIB_SHARED) $(TARGETLIB_LINK2)
 
-$(TARGETLIB_STATIC): $(OBJECTS)
+$(top_builddir)/lib/$(TARGETLIB_STATIC): $(OBJECTS)
        @$(INSTALL) -d $(top_builddir)/lib
-       ar $(AROPTIONS) $(top_builddir)/lib/$@ $(OBJECTS)
-       $(RANLIB) $(top_builddir)/lib/$@
+       @$(RM) $@
+       $(AR) $(AROPTIONS) $@ $(OBJECTS)
+       $(RANLIB) $@
 
 install: install_@WX_TARGET_LIBRARY_TYPE@ install_headers
 
@@ -122,5 +116,5 @@ clean:
              $(top_builddir)/lib/$(TARGETLIB_LINK2) \
              $(top_builddir)/lib/$(TARGETLIB_STATIC) core
 
-.PHONY: all shared static clean install install_static install_shared uninstall
+.PHONY: all libtype_so libtype_a install install_so install_a install_headers uninstall clean