aboutsummaryrefslogtreecommitdiff
path: root/gem2pdp/Makefile.in
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2003-09-01 18:22:57 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2003-09-01 18:22:57 +0000
commit1719a56dc3b872e8238b8ea945b5a1f934bde031 (patch)
treed3d2f7f0b70b5e1c323858a9743e9c535b204706 /gem2pdp/Makefile.in
parente5333824d29ee2a92ec2c474bffe03d83dac8d73 (diff)
moved gem2pdp to the CVSROOT/externals/
svn path=/trunk/externals/unauthorized/; revision=922
Diffstat (limited to 'gem2pdp/Makefile.in')
-rw-r--r--gem2pdp/Makefile.in49
1 files changed, 0 insertions, 49 deletions
diff --git a/gem2pdp/Makefile.in b/gem2pdp/Makefile.in
deleted file mode 100644
index a16e25d..0000000
--- a/gem2pdp/Makefile.in
+++ /dev/null
@@ -1,49 +0,0 @@
-PD_DIR = @PD_DIR@
-PDP_DIR = @PDP_DIR@
-GEM_DIR = @GEM_DIR@
-
-LIBS = @LIBS@
-GEM2PDP_VERSION = @GEM2PDP_VERSION@
-
-GEM2PDP_DISTRO = /mnt/c/ydegoyon.free.fr/gem2pdp-$(GEM2PDP_VERSION)
-GEM2PDP_TARBALL = $(GEM2PDP_DISTRO).tar.gz
-# build flags
-
-GEM2PDP_INCLUDE = -I$(PD_DIR)/src -I. -I$(PDP_DIR)/include -I$(GEM_DIR)/src
-GEM2PDP_CPPFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math \
- -Wall -W -Wno-unused -Wno-parentheses -Wno-switch \
- -DGEM2PDP_VERSION=\"$(GEM2PDP_VERSION)\" -g
-PDP_PIDIP_CPPFLAGS = -O
-
-all: gem2pdp.pd_linux pdp2gem.pd_linux
-
-pdp2gem.pd_linux: pdp2gem.o yuv.o
- rm -f pdp2gem.pd_linux
- gcc -export_dynamic -shared -o pdp2gem.pd_linux pdp2gem.o yuv.o $(LIBS)
-
-gem2pdp.pd_linux: gem2pdp.o yuv.o
- rm -f gem2pdp.pd_linux
- gcc -export_dynamic -shared -o gem2pdp.pd_linux gem2pdp.o yuv.o $(LIBS)
-
-clean:
- rm -f *.o
- rm -f gem2pdp.pd_linux
- rm -f pdp2gem.pd_linux
-
-distro: clean all
- rm *.o
- strip --strip-unneeded gem2pdp.pd_linux
- cd .. && cp -rf gem2pdp /tmp/gem2pdp-$(GEM2PDP_VERSION)
- cd /tmp && tar vczf $(GEM2PDP_TARBALL) gem2pdp-$(GEM2PDP_VERSION)
- cp /mnt/c/ydegoyon.free.fr/gem2pdp-$(GEM2PDP_VERSION).tar.gz /mnt/c/Yves
- rm -rf /tmp/gem2pdp-$(GEM2PDP_VERSION)
-
-.cpp.o:
- cat $(PDP_DIR)/include/pdp.h | grep -v m_pd > pdp-light.h
- g++ $(GEM2PDP_CPPFLAGS) $(GEM2PDP_INCLUDE) -o $*.o -c $*.cpp
-
-.c.o:
- cat $(PDP_DIR)/include/pdp.h | grep -v m_pd > pdp-light.h
- gcc $(GEM2PDP_CPPFLAGS) $(GEM2PDP_INCLUDE) -o $*.o -c $*.c
-
-