diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2009-04-01 23:28:24 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2009-04-01 23:28:24 +0000 |
commit | 36b48fabcf54a65541b08c0835b53daebd9357f6 (patch) | |
tree | cb5c8d6a5e75c142e2b396505fc70c77439f4296 /externals/grill/idelay/makefile.pd-cygwin | |
parent | 0ed7a8b68dd73e2b0473b8127aeca99f3bac9061 (diff) |
replaced remaining dyn, dyn_py, idelay
svn path=/trunk/; revision=10953
Diffstat (limited to 'externals/grill/idelay/makefile.pd-cygwin')
-rw-r--r-- | externals/grill/idelay/makefile.pd-cygwin | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/externals/grill/idelay/makefile.pd-cygwin b/externals/grill/idelay/makefile.pd-cygwin deleted file mode 100644 index 9c4f16c7..00000000 --- a/externals/grill/idelay/makefile.pd-cygwin +++ /dev/null @@ -1 +0,0 @@ -# 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 |