Libtool removed

Runtime library build removed


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6019 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-07-10 16:21:06 +00:00
commit 3d26007c84
3 changed files with 6 additions and 74 deletions

View file

@ -15,20 +15,16 @@ SWIG_LIB = @swig_lib@
BIN_DIR = @bindir@
TARGET = swig@release_suffix@@EXEEXT@
SOURCE = Source
RUNTIME = Runtime
swig: source swig.spec
source:
@cd $(SOURCE) && $(MAKE)
runtime:
@cd $(RUNTIME) && $(MAKE)
swig.spec: $(srcdir)/swig.spec.in config.status
@CONFIG_HEADERS= CONFIG_LINKS= CONFIG_FILES=swig.spec $(SHELL) ./config.status
.PHONY: source runtime
.PHONY: source
#####################################################################
# All the languages SWIG speaks (when it wants to)
@ -56,10 +52,8 @@ skip-modula3 = test -n "@SKIP_MODULA3@"
ACTION = check
chk-set-swiglib = SWIG_LIB=@ROOT_DIR@/Lib
chk-set-runtimelib = RUNTIMEDIR=@ROOT_DIR@/$(RUNTIME)/.libs
chk-set-swig = SWIG=@ROOT_DIR@/$(TARGET)
chk-set-env = $(chk-set-swiglib) $(chk-set-swig) $(chk-set-runtimelib)
chk-set-env = $(chk-set-swiglib) $(chk-set-swig)
chk = $(MAKE) -k -s $(chk-set-env) $(ACTION)
@ -234,17 +228,13 @@ broken-%-test-suite:
clean: clean-objects clean-examples clean-gifplot clean-test-suite
clean-objects: clean-source clean-runtime
clean-objects: clean-source
clean-source:
@echo cleaning Source
@cd $(SOURCE) && $(MAKE) -s clean
@rm -f $(TARGET)
clean-runtime:
@echo cleaning Runtime
@cd $(RUNTIME) && $(MAKE) -s clean
clean-examples:
@$(MAKE) -k -s check-examples ACTION=clean
@ -272,17 +262,13 @@ DISTCLEAN-DEAD = config.status config.log config.cache swig.spec Makefile mkmf.l
distclean: distclean-objects clean-examples clean-gifplot distclean-test-suite distclean-dead
distclean-objects: distclean-source distclean-runtime
distclean-objects: distclean-source
distclean-source:
@echo dist cleaning Source
@cd $(SOURCE) && $(MAKE) -s distclean
@rm -f $(TARGET)
distclean-runtime:
@echo dist cleaning Runtime
@cd $(RUNTIME) && $(MAKE) -s distclean
distclean-test-suite:
@echo dist cleaning Examples/test-suite
@$(MAKE) -k -s noskip-test-suite ACTION=distclean
@ -366,10 +352,6 @@ install-lib:
done
install-runtime:
@cd $(RUNTIME) && $(MAKE) install
install-m4:
@echo "Installing M4 macros"
@$(MKINSTDIRS) $(DESTDIR)$(M4_INSTALL_DIR)
@ -392,9 +374,6 @@ uninstall-lib:
@echo "Uninstalling the SWIG library"
rm -rf $(DESTDIR)$(SWIG_LIB)/
uninstall-runtime:
@cd $(RUNTIME) && $(MAKE) uninstall
uninstall-m4:
@echo "Uninstalling $(M4_INSTALL_DIR)/swig.m4"
rm -f $(M4_INSTALL_DIR)/swig.m4