aboutsummaryrefslogtreecommitdiff
path: root/src/makefile.in
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-03-22 20:58:25 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-03-22 20:58:25 +0000
commit2b60d55c919e7588f5aff15936e83c300b3660bb (patch)
tree14d860de7f28083d3756ad91b627de70f26788f6 /src/makefile.in
parentc500bc542cb7cc78d6dac3f7da3bff626056b1aa (diff)
zexy-2.0:
- use of abstractions for objects that allow it - some objects are build both as externals and abstractions (as slower fallbacks) - code-layout is now 1:1 c-file<->object (this should allow for building of zexy as a collection of externals instead as a big library) - matrix-objects have moved to iemmatrix !! svn path=/trunk/externals/zexy/; revision=2641
Diffstat (limited to 'src/makefile.in')
-rw-r--r--src/makefile.in80
1 files changed, 0 insertions, 80 deletions
diff --git a/src/makefile.in b/src/makefile.in
deleted file mode 100644
index ffb3705..0000000
--- a/src/makefile.in
+++ /dev/null
@@ -1,80 +0,0 @@
-LIBNAME =zexy
-
-PREFIX =@prefix@@PDLIBDIR@
-
-INSTALL_BIN=$(PREFIX)/extra
-INSTALL_DOC=$(PREFIX)/@REFERENCEPATH@$(LIBNAME)
-
-EXT = @EXT@
-DEFS = @DFLAGS@
-IFLAGS = -I. @INCLUDES@
-
-CC = @CC@
-LD = @LD@
-AFLAGS =
-LFLAGS = @LFLAGS@
-WFLAGS =
-
-TARNAME = $(LIBNAME)-@ZEXY_VERSION@.tgz
-
-.SUFFIXES: .$(EXT)
-
-PDCFLAGS = -g -O2 $(DEFS) $(IFLAGS) $(WFLAGS) $(LFLAGS) $(AFLAGS)
-CFLAGS = -g -O2 $(DEFS) $(IFLAGS) $(WFLAGS)
-
-LIBS = @LIBS@
-#LIBS = -lpthread -lm -lc
-include make.source
-TARGETS = $(SOURCES:.c=.o)
-
-
-all: $(LIBNAME)
- cp $(LIBNAME).$(EXT) ..
-
-$(LIBNAME): $(TARGETS)
- $(LD) $(LFLAGS) -o $(LIBNAME).$(EXT) *.o $(LIBS)
- strip @STRIPFLAGS@ $(LIBNAME).$(EXT)
-
-.c.o:
- $(CC) -c -o $@ $(CFLAGS) -DPD $*.c
-
-# cp $@ $*_stat.o
-
-.o.$(EXT):
- $(CC) -o $@ $(PDCFLAGS) -DPD $*.o
-
-
-clean:
- -rm -f *.$(EXT) *.o
-
-cleaner: clean
- -rm -f *~ _* config.*
-
-cleanest: cleaner
- -rm -f makefile ../*.$(EXT) make.source
-
-distclean: cleanest newmakefile
-
-install: install-bin install-doc
-
-install-bin:
- -install -d $(INSTALL_BIN)
- -install -m 644 $(LIBNAME).$(EXT) $(INSTALL_BIN)
-
-install-doc:
- -install -d $(INSTALL_DOC)
- -install -m 644 ../examples/*.pd $(INSTALL_DOC)
-
-dist: all cleaner
- (cd ../..;tar czvf $(TARNAME) $(LIBNAME))
-
-everything: clean all install distclean
-
-newmakefile:
- echo "current:">makefile
- echo " ./configure && make">>makefile
-
-make.source:
- echo "SOURCES = \\"> make.source
- echo `ls z_*.c $(LIBNAME).c` >> make.source
- echo >> make.source