From d62e56f4df9594f72ce501f5e19c974fd18e7295 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Tue, 22 Oct 2002 23:07:10 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r186, which included commits to RCS files with non-trunk default branches. svn path=/trunk/; revision=187 --- externals/grill/flext/tutorial/makefile.pd-linux | 57 ++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 externals/grill/flext/tutorial/makefile.pd-linux (limited to 'externals/grill/flext/tutorial/makefile.pd-linux') diff --git a/externals/grill/flext/tutorial/makefile.pd-linux b/externals/grill/flext/tutorial/makefile.pd-linux new file mode 100644 index 00000000..5c0a3cbc --- /dev/null +++ b/externals/grill/flext/tutorial/makefile.pd-linux @@ -0,0 +1,57 @@ +# flext tutorial examples +# +# Makefile for gcc @ linux +# +# usage: make -f makefile.pd-linux +# +# ----------------------------------------------------- + +include config-pd-linux.txt + +FLEXTLIB=$(FLEXTPATH)/flext_t.a # take threaded library for all + + +# compiler+linker stuff ### EDIT! ### +INCLUDES=$(PDPATH)/src +LIBPATH= +FLAGS=-DPD -DFLEXT_THREADS +CFLAGS=-O6 -mcpu=pentiumpro +LIBS=m + + +# the rest can stay untouched +# ---------------------------------------------- + +# all the source files from the package + +EXAMPLES=simple1 simple2 simple3 adv1 signal1~ signal2~ thread1 thread2 + + +TARGETS=$(patsubst %,$(OUTPATH)/%.pd_linux,$(EXAMPLES)) + +# default target +all: $(OUTPATH) $(TARGETS) + + +$(OUTPATH)/%~.pd_linux : $(OUTPATH)/%.pd_linux + mv $^ $@ + +$(SRCS): $(HDRS) + touch $@ + +$(OUTPATH): + mkdir $(OUTPATH) + +$(OUTPATH)/%.o : %/main.cpp + $(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@ + +$(OUTPATH)/%.pd_linux : $(OUTPATH)/%.o $(FLEXTLIB) + $(CXX) $(LDFLAGS) -shared $(patsubst %,-L%,$(LIBPATH)) $^ $(patsubst %,-l%,$(LIBS)) -o $@ + chmod 755 $@ + + +.PHONY: clean +clean: + rm -f $(OUTPATH)/*.o $(TARGETS) + + -- cgit v1.2.1