From 5af83c784ab47c787da30ab3127f35ddf4e7631e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Fri, 8 Dec 2006 18:40:36 +0000 Subject: use zexy's build-system, which generates Make.config rather than Makefile directly svn path=/trunk/externals/iem/iemmatrix/; revision=6745 --- src/Makefile.in | 86 --------------------------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 src/Makefile.in (limited to 'src/Makefile.in') diff --git a/src/Makefile.in b/src/Makefile.in deleted file mode 100644 index c4225e7..0000000 --- a/src/Makefile.in +++ /dev/null @@ -1,86 +0,0 @@ -LIBNAME =iemmatrix - -PREFIX =@prefix@@PDLIBDIR@ - -INSTALL_BIN=$(PREFIX)/extra/$(LIBNAME) -INSTALL_DOC=$(INSTALL_BIN) - -EXT = @EXT@ -DEFS = @DFLAGS@ -IFLAGS = -I. @INCLUDES@ $(INCLUDES) -MAKEDEP_FLAGS = @MAKEDEP_FLAGS@ - -CC = @CC@ -LD = @LD@ -STRIP = @STRIP@ @STRIPFLAGS@ - -AFLAGS = -LFLAGS = @LFLAGS@ -WFLAGS = - -TARNAME = $(LIBNAME)-@IEMMATRIX_VERSION@.tgz - -.SUFFIXES: .$(EXT) - -CFLAGS = $(DEFS) $(IFLAGS) $(WFLAGS) @CFLAGS@ - -LIBS = @LIBS@ - -SOURCES=$(sort $(filter %.c, $(wildcard *.c))) -TARGETS = $(SOURCES:.c=.o) - -all: $(LIBNAME) - cp $(LIBNAME).$(EXT) .. - -$(LIBNAME): $(TARGETS) - $(LD) $(LFLAGS) -o $(LIBNAME).$(EXT) *.o $(LIBS) - $(STRIP) $(LIBNAME).$(EXT) - -## dependencies: as proposed by the GNU-make documentation -## see http://www.gnu.org/software/make/manual/html_node/make_47.html#SEC51 --include $(SOURCES:.c=.d) -%.d: %.c - @set -e; rm -f $@; \ - $(CXX) $(MAKEDEP_FLAGS) $(CFLAGS) $< > $@.$$$$; \ - sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \ - rm -f $@.$$$$ - -clean: - -rm -f *.$(EXT) *.o - -cleaner: clean - -rm -f *~ _* config.* *.d *.d.* - -cleanest: cleaner - -rm -f Makefile ../*.$(EXT) - -distclean: cleanest newmakefile - -install: install-bin install-abs install-doc - -install-bin: - -install -d $(INSTALL_BIN) - -install -m 644 $(LIBNAME).$(EXT) $(INSTALL_BIN) - -install-doc: - -install -d $(INSTALL_DOC) - -install -m 644 ../doc/*.pd $(INSTALL_DOC) - -install-abs: - -install -d $(INSTALL_BIN) - -install -m644 ../abs/*.pd $(INSTALL_BIN) - -dist: all cleaner - (cd ../..;tar czvf $(TARNAME) $(LIBNAME)) - -everything: clean all install distclean - -newmakefile: - echo "current:">Makefile - echo " ./configure && make">>Makefile - -Makefile: Makefile.in configure - ./configure - -configure: configure.ac - autoconf -- cgit v1.2.1