From 420a758195fea188311fdcd24bff4be2c2afebfb Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Thu, 5 Dec 2002 11:12:17 +0000 Subject: "" svn path=/trunk/; revision=279 --- externals/grill/idelay/makefile.pd-linux | 68 ++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 externals/grill/idelay/makefile.pd-linux (limited to 'externals/grill/idelay/makefile.pd-linux') diff --git a/externals/grill/idelay/makefile.pd-linux b/externals/grill/idelay/makefile.pd-linux new file mode 100644 index 00000000..514b533f --- /dev/null +++ b/externals/grill/idelay/makefile.pd-linux @@ -0,0 +1,68 @@ +# idelay~ - interpolating delay using flext layer +# Copyright (c) 2002 Thomas Grill (xovo@gmx.net) +# +# Makefile for gcc +# +# usage: make -f makefile.pd-linux +# +# --------------------------------------------- + +NAME=idelay~ + +# where to build +TARGDIR=./pd-linux + +# where to install ### EDIT! ### +INSTDIR=/usr/local/lib/pd/extra + +# flext stuff ### EDIT! ### +FLEXTPATH=/usr/local/lib/pd/flext +FLEXTLIB=$(FLEXTPATH)/flext.a + +# compiler+linker stuff ### EDIT! ### +INCLUDES=/usr/local/lib/pd/include +FLAGS=-DPD +CFLAGS=-O6 -mpentium +LIBS=m + + +# the rest can stay untouched +# ---------------------------------------------- + +# all the source files from the package +SRCS=delay.cpp +HDRS=delay.h + +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