aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-05-14 02:08:06 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-05-14 02:08:06 +0000
commit78cc2ee38c931ae2c4718abc1607dcf9fbde4cf8 (patch)
treead5a1f26320588b9cc6ab43709d733e718e572d5
parent7030360902959effa21c357475ad9f0a81f57b14 (diff)
remove makefile before setting up with the template Makefile
svn path=/trunk/externals/cxc/; revision=13539
-rw-r--r--makefile62
1 files changed, 0 insertions, 62 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index 675cce9..0000000
--- a/makefile
+++ /dev/null
@@ -1,62 +0,0 @@
-
-EXT = pd_linux
-DEFS = -DUNIX -DLINUX -DHAVE_LIBC=1 -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 -DHAVE_SELECT=1 -DHAVE_SOCKET=1 -DHAVE_STRERROR=1 -DPD_VERSION_MINOR=36
-CC = gcc
-CXX = c++
-LD = ld
-AFLAGS =
-LFLAGS = --export-dynamic -shared
-WFLAGS =
-IFLAGS = -I. -I../../pd/src
-PREFIX=/usr/
-INSTALL_PREFIX=$(PREFIX)
-
-VERSION = \"$(shell cat VERSION)\"
-TARNAME = cxc-$(shell cat VERSION).tar.gz
-
-.SUFFIXES: .$(EXT)
-
-PDCFLAGS = -g -O2 $(DEFS) $(IFLAGS) $(WFLAGS) $(LFLAGS) $(AFLAGS) -DVERSION=$(VERSION)
-CFLAGS = -g -O2 $(DEFS) $(IFLAGS) $(WFLAGS) -DVERSION=$(VERSION)
-CXXFLAGS = $(CFLAGS)
-
-LIBS = -lc -lm
-#LIBS = -lpthread -lm -lc
-SOURCES = ENV.c ascseq.c ascwave.c bangfilt.c bangfilt2.c binshift.c cx.c ixprint.c mean.c utime.c proc.c randomix.c reson~.c sigdelta.c split.c
-TARGETS = $(SOURCES:.c=.$(EXT))
-
-# all: $(TARGETS)
-all: cxc
-
-cxc: $(TARGETS)
-# cc -c $(CFLAGS) -o cxc.o -DPD cx.c
- $(LD) $(LFLAGS) -o cxc.$(EXT) *.o $(LIBS)
- strip --strip-unneeded cxc.$(EXT)
-
-clean::
- -rm *.$(EXT) *.o
-
-distclean: clean
- -rm config.cache config.log config.status makefile
-
-
-
-.c.o:
- $(CC) -c -o $@ $(CFLAGS) -DPD $*.c
-
-# cp $@ $*_stat.o
-
-.o.$(EXT):
- $(CC) -o $@ $(PDCFLAGS) -DPD $*.o
-
-
-
-install::
- install -d $(INSTALL_PREFIX)/pd/externs
-# install -m 644 *.$(EXT) $(INSTALL_PREFIX)/pd/externs
- -install -m 644 cxc.$(EXT) $(INSTALL_PREFIX)/pd/externs
- install -m 644 reference/*.pd $(INSTALL_PREFIX)/pd/doc/5.reference
-
-
-dist: distclean
- (cd ..;tar czvf $(TARNAME) cxc)