aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-07-23 16:44:14 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:05:31 +0200
commit0f5d5d1a8a13c2bf08030e9569337ce2bc5cb789 (patch)
treefa04d40485bb0edaa68fc6a0667750faec0f4d05
parent3b9bca14846932a4c2caacb2ddd66b05b57b779f (diff)
svn path=/trunk/externals/august/readanysf~/; revision=13730
-rw-r--r--Makefile.darwin_i386_10.440
-rw-r--r--Makefile.darwin_powerpc_10.440
2 files changed, 0 insertions, 80 deletions
diff --git a/Makefile.darwin_i386_10.4 b/Makefile.darwin_i386_10.4
deleted file mode 100644
index 0a9ad52..0000000
--- a/Makefile.darwin_i386_10.4
+++ /dev/null
@@ -1,40 +0,0 @@
-# Edit these two variables to suit your system.
-# You need both gavl and gmerlin_avdec libs to compile
-#
-GAVLPATH=/sw/include
-PDPATH=/Applications/Pd-extended.app/Contents/Resources/include/
-
-##############################################
-LBITS := $(shell getconf LONG_BIT)
-ifeq ($(LBITS),64)
- # do 64 bit stuff here, like set some CFLAGS
-CFLAGS = -fPIC -I./ -I$(GAVLPATH) -I$(GAVLPATH)/gavl -I$(GAVLPATH)/gmerlin -I$(PDPATH) -Wall
-else
- # do 32 bit stuff here
-CFLAGS = -I./ -I$(GAVLPATH) -I$(GAVLPATH)/gavl -I$(GAVLPATH)/gmerlin -I$(PDPATH) -Wall
-endif
-
-
-CFLAGS += -mmacosx-version-min=10.4 -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk
-LDFLAGS = -L/sw/lib -lgavl -lgmerlin_avdec \
- -dynamiclib -undefined dynamic_lookup -lsupc++ -mmacosx-version-min=10.4 \
- -lSystem.B -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk
-
-
-all: pd_darwin
-
-pd_darwin: readanysf~.cpp Readsf.cpp Readsf.h objs/FifoAudioFrames.o objs/Readsf.o FifoAudioFrames.h FifoAudioFrames.cpp
- g++ -shared -o readanysf~.pd_darwin $(CFLAGS) $(LDFLAGS) \
- readanysf~.cpp \
- objs/FifoAudioFrames.o \
- objs/Readsf.o
- strip readanysf~.pd_darwin
-
-objs/Readsf.o: Readsf.cpp Readsf.h FifoAudioFrames.h
- g++ -c -o objs/Readsf.o Readsf.cpp $(CFLAGS)
-
-objs/FifoAudioFrames.o: FifoAudioFrames.cpp FifoAudioFrames.h
- g++ -c -o objs/FifoAudioFrames.o FifoAudioFrames.cpp $(CFLAGS)
-
-clean:
- rm objs/*.o readanysf~.pd_linux
diff --git a/Makefile.darwin_powerpc_10.4 b/Makefile.darwin_powerpc_10.4
deleted file mode 100644
index 2d60ab6..0000000
--- a/Makefile.darwin_powerpc_10.4
+++ /dev/null
@@ -1,40 +0,0 @@
-# Edit these two variables to suit your system.
-# You need both gavl and gmerlin_avdec libs to compile
-#
-GAVLPATH=/sw/include
-PDPATH=/Applications/Pd-extended.app/Contents/Resources/include/
-
-##############################################
-LBITS := $(shell getconf LONG_BIT)
-ifeq ($(LBITS),64)
- # do 64 bit stuff here, like set some CFLAGS
-CFLAGS = -fPIC -I./ -I$(GAVLPATH) -I$(GAVLPATH)/gavl -I$(GAVLPATH)/gmerlin -I$(PDPATH) -Wall
-else
- # do 32 bit stuff here
-CFLAGS = -I./ -I$(GAVLPATH) -I$(GAVLPATH)/gavl -I$(GAVLPATH)/gmerlin -I$(PDPATH) -Wall
-endif
-
-
-CFLAGS += -mmacosx-version-min=10.4 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk
-LDFLAGS = -L/sw/lib -lgavl -lgmerlin_avdec \
- -dynamiclib -undefined dynamic_lookup -lsupc++ -mmacosx-version-min=10.4 \
- -lSystem.B -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk
-
-
-all: pd_darwin
-
-pd_darwin: readanysf~.cpp Readsf.cpp Readsf.h objs/FifoAudioFrames.o objs/Readsf.o FifoAudioFrames.h FifoAudioFrames.cpp
- g++ -shared -o readanysf~.pd_darwin $(CFLAGS) $(LDFLAGS) \
- readanysf~.cpp \
- objs/FifoAudioFrames.o \
- objs/Readsf.o
- strip readanysf~.pd_darwin
-
-objs/Readsf.o: Readsf.cpp Readsf.h FifoAudioFrames.h
- g++ -c -o objs/Readsf.o Readsf.cpp $(CFLAGS)
-
-objs/FifoAudioFrames.o: FifoAudioFrames.cpp FifoAudioFrames.h
- g++ -c -o objs/FifoAudioFrames.o FifoAudioFrames.cpp $(CFLAGS)
-
-clean:
- rm objs/*.o readanysf~.pd_linux