diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2004-01-08 03:39:00 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2004-01-08 03:39:00 +0000 |
commit | 69487c956975fb9dc0587fb22fc20d6ca62ec08d (patch) | |
tree | bada1cbb47e818666ae5dfe2e024a306286816cc /externals/grill/pool/makefile.pd-darwin | |
parent | d563db671892f0719195aeeb89cac6ee3fe7c69e (diff) |
""
svn path=/trunk/; revision=1252
Diffstat (limited to 'externals/grill/pool/makefile.pd-darwin')
-rw-r--r-- | externals/grill/pool/makefile.pd-darwin | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/externals/grill/pool/makefile.pd-darwin b/externals/grill/pool/makefile.pd-darwin index c71935d8..b602933a 100644 --- a/externals/grill/pool/makefile.pd-darwin +++ b/externals/grill/pool/makefile.pd-darwin @@ -1,5 +1,5 @@ # pool - hierarchical storage object for PD and Max/MSP -# Copyright (C) 2002 Thomas Grill (xovo@gmx.net) +# Copyright (C) 2002-2004 Thomas Grill (xovo@gmx.net) # # Makefile for gcc @ darwin (OSX) # @@ -28,26 +28,21 @@ FRAMEWORKS=Carbon # the rest can stay untouched # ---------------------------------------------- -NAME=pool +include make-files.txt -# all the source files from the package -SRCS=main.cpp pool.cpp data.cpp -HDRS=pool.h - -DIR=. TARGET=$(TARGDIR)/$(NAME).pd_darwin # default target all: $(TARGDIR) $(TARGET) -$(patsubst %,$(DIR)/%,$(SRCS)): $(patsubst %,$(DIR)/%,$(HDRS)) $(FLEXTLIB) $(CONFIG) +$(patsubst %,$(SRCDIR)/%,$(SRCS)): $(patsubst %,$(SRCDIR)/%,$(HDRS)) $(FLEXTLIB) $(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)) $(FLEXTLIB) @@ -72,7 +67,3 @@ clean: - - - - |