aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/idelay
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-12-30 03:43:16 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-12-30 03:43:16 +0000
commit26bce99988ed7f18cef77ede2be92acd42ebb60c (patch)
tree89e34915d1d08b331511d8569564ed87fda305c1 /externals/grill/idelay
parent9afde55c5e20b9f2c4e9d644277f9706f519342c (diff)
""
svn path=/trunk/; revision=1245
Diffstat (limited to 'externals/grill/idelay')
-rw-r--r--externals/grill/idelay/makefile.pd-cygwin70
-rw-r--r--externals/grill/idelay/makefile.pd-linux69
2 files changed, 2 insertions, 137 deletions
diff --git a/externals/grill/idelay/makefile.pd-cygwin b/externals/grill/idelay/makefile.pd-cygwin
index 7a93be10..9c4f16c7 100644
--- a/externals/grill/idelay/makefile.pd-cygwin
+++ b/externals/grill/idelay/makefile.pd-cygwin
@@ -1,69 +1 @@
-# idelay~ - interpolating delay using flext layer
-# Copyright (c) 2002 Thomas Grill (xovo@gmx.net)
-#
-# Makefile for gcc
-#
-# usage: make -f makefile.pd-cygwin
-#
-# ---------------------------------------------
-
-NAME=idelay~
-
-# where to build
-TARGDIR=./pd-cygwin
-
-# where to install ### EDIT! ###
-INSTDIR=c:/programme/audio/pd/extra
-
-# flext stuff ### EDIT! ###
-FLEXTPATH=../flext
-FLEXTLIB=$(FLEXTPATH)/pd-cygwin/flext.lib
-
-# compiler+linker stuff ### EDIT! ###
-INCLUDES=c:/programme/audio/pd/src
-LIBPATH=c:/programme/audio/pd/bin
-FLAGS=-DPD
-CFLAGS=-O6 -mpentium
-LIBS=m pd
-
-
-# the rest can stay untouched
-# ----------------------------------------------
-
-# all the source files from the package
-SRCS=delay.cpp
-HDRS=delay.h
-
-TARGET=$(TARGDIR)/$(NAME).dll
-
-# 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%,$(LIBPATH)) $^ $(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)
-
-
-
+# idelay~ - interpolating delay using flext layer # Copyright (c) 2002 Thomas Grill (xovo@gmx.net) # # Makefile for gcc # # usage: make -f makefile.pd-cygwin # # --------------------------------------------- NAME=idelay~ # where to build TARGDIR=./pd-cygwin # where to install ### EDIT! ### INSTDIR=c:/programme/audio/pd/extra # flext stuff ### EDIT! ### FLEXTPATH=../flext FLEXTLIB=$(FLEXTPATH)/pd-cygwin/flext.lib # compiler+linker stuff ### EDIT! ### INCLUDES=c:/programme/audio/pd/src LIBPATH=c:/programme/audio/pd/bin FLAGS=-DPD CFLAGS=-O6 -mpentium LIBS=m pd # the rest can stay untouched # ---------------------------------------------- # all the source files from the package SRCS=delay.cpp HDRS=delay.h TARGET=$(TARGDIR)/$(NAME).dll # 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%,$(LIBPATH)) $^ $(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) \ No newline at end of file
diff --git a/externals/grill/idelay/makefile.pd-linux b/externals/grill/idelay/makefile.pd-linux
index 514b533f..8d04e83c 100644
--- a/externals/grill/idelay/makefile.pd-linux
+++ b/externals/grill/idelay/makefile.pd-linux
@@ -1,68 +1 @@
-# 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)
-
-
-
+# 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) \ No newline at end of file