aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/dynext/makefile.pd-darwin
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-12-17 05:05:54 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-12-17 05:05:54 +0000
commitc454a7b744916a1882c54ecbeca8fa1c09f6444e (patch)
tree1653e06b2f85dea23a4ae80771af2bc2386163ad /externals/grill/dynext/makefile.pd-darwin
parentea614d79f7ef499334d83289cd3bd013f36d9ad7 (diff)
first version
using flext build system name changes for svn repository svn path=/trunk/; revision=2400
Diffstat (limited to 'externals/grill/dynext/makefile.pd-darwin')
-rw-r--r--externals/grill/dynext/makefile.pd-darwin4
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/grill/dynext/makefile.pd-darwin b/externals/grill/dynext/makefile.pd-darwin
index f7588e29..d12a685c 100644
--- a/externals/grill/dynext/makefile.pd-darwin
+++ b/externals/grill/dynext/makefile.pd-darwin
@@ -49,13 +49,13 @@ TARGET=$(TARGDIR)/$(NAME).pd_darwin
# default target
all: $(TARGDIR) $(TARGET)
-$(patsubst %,$(DIR)/%,$(SRCS)): $(patsubst %,$(DIR)/%,$(HDRS)) $(CONFIG)
+$(patsubst %,$(SRCDIR)/%,$(SRCS)): $(patsubst %,$(SRCDIR)/%,$(HDRS)) $(CONFIG)
touch $@
$(TARGDIR):
mkdir $(TARGDIR)
-$(TARGDIR)/%.o : $(DIR)/%.cpp
+$(TARGDIR)/%.o : $(SRCDIR)/%.cpp
$(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@
$(TARGET) : $(patsubst %.cpp,$(TARGDIR)/%.o,$(SRCS))