From 0af60cd02d714f0ca13bfff9f3e12c84357ba176 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Tue, 3 Dec 2002 22:09:13 +0000 Subject: "version 0.0.2" svn path=/trunk/; revision=271 --- externals/grill/prepend/makefile.pd-linux | 69 +++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 externals/grill/prepend/makefile.pd-linux (limited to 'externals/grill/prepend/makefile.pd-linux') diff --git a/externals/grill/prepend/makefile.pd-linux b/externals/grill/prepend/makefile.pd-linux new file mode 100644 index 00000000..a7d5df6b --- /dev/null +++ b/externals/grill/prepend/makefile.pd-linux @@ -0,0 +1,69 @@ +# prepend - just like in Max/MSP +# Copyright (c) 2002 Thomas Grill (xovo@gmx.net) +# +# Makefile for gcc +# +# usage: make -f makefile.pd-linux +# +# --------------------------------------------- + +NAME=prepend2 + +# where to build +TARGDIR=./pd-linux + +# where to install ### EDIT! ### +INSTDIR=/usr/lib/pd/extra + +# flext stuff ### EDIT! ### +FLEXTPATH=/usr/lib/pd/flext +FLEXTLIB=$(FLEXTPATH)/flext.a + +# compiler+linker stuff ### EDIT! ### +INCLUDES=/usr/lib/pd/include +FLAGS=-DPD +CFLAGS=-O6 -mcpu=pentium +LIBS=m + + +# the rest can stay untouched +# ---------------------------------------------- + +# all the source files from the package +SRCS=main.cpp +HDRS= + +TARGET=$(TARGDIR)/$(NAME).pd_linux + +# default target +all: $(TARGDIR) $(TARGET) + +$(SRCS): $(HDRS) + touch $@ + +$(TARGDIR): + mkdir $(TARGDIR) + +$(TARGDIR)/%.o : %.cpp + $(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@ + +$(TARGET) : $(patsubst %.cpp,$(TARGDIR)/%.o,$(SRCS)) $(FLEXTLIB) + $(CXX) $(LDFLAGS) -shared $^ $(patsubst %,-l%,$(LIBS)) -o $@ + chmod 755 $@ + +$(INSTDIR): + mkdir $(INSTDIR) + +install:: $(INSTDIR) + +install:: $(TARGET) + cp $^ $(INSTDIR) + chown root.root $(patsubst %,$(INSTDIR)/%,$(notdir $^)) + +.PHONY: clean +clean: + rm -f $(TARGDIR)/*.o $(TARGET) + + + + -- cgit v1.2.1