X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c34174728fb5fabc084841b057001a9682ce34b4..9a26db9ed22b5eed62201186f69fcb7e63e2633d:/src/makelib.env.in diff --git a/src/makelib.env.in b/src/makelib.env.in index 1707f4ad24..3da9676922 100644 --- a/src/makelib.env.in +++ b/src/makelib.env.in @@ -41,13 +41,16 @@ TARGETLIB_LINK2 = $(TARGET_LIBNAME).so TARGETLIB_SONAME = @WX_TARGET_LIBRARY_SONAME@ -%.o : %.c +# NB: see remark in Makefile.in as to why we don't use %.foo: %.bar rules +.SUFFIXES: .o .c .cpp .cxx + +.c.o: $(CC) -c $(CFLAGS) $(PICFLAGS) -o $@ $< -%.o : %.cpp +.cpp.o: $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< -%.o : %.cxx +.cxx.o: $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< # the comment at the end of the next line is needed because otherwise autoconf @@ -57,14 +60,12 @@ VPATH = @PATH_IFS@$(top_srcdir)/$(libsrc_dir) # ':' for autoconf include $(top_builddir)/src/make.env - all: libtype_@WX_TARGET_LIBRARY_TYPE@ libtype_so: $(top_builddir)/lib/$(TARGETLIB_SHARED) libtype_a: $(top_builddir)/lib/$(TARGETLIB_STATIC) - $(top_builddir)/lib/$(TARGETLIB_SHARED): $(OBJECTS) @$(INSTALL) -d $(top_builddir)/lib $(SHARED_LD) $@ $(TARGETLIB_SONAME) $(OBJECTS)