diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2009-04-01 21:13:09 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2009-04-01 21:13:09 +0000 |
commit | 0ed7a8b68dd73e2b0473b8127aeca99f3bac9061 (patch) | |
tree | 5c67818b38a5cc2f9caa5ca7f8640ca356adf02b /externals/grill/prepend/makefile.pd-linux | |
parent | bb4c7f6a245394d09dac9adfb2efb093d3d98452 (diff) |
cleaned up grill externals - replaced with svn:externals to svn.grrrr.org/ext/trunk/
svn path=/trunk/; revision=10951
Diffstat (limited to 'externals/grill/prepend/makefile.pd-linux')
-rw-r--r-- | externals/grill/prepend/makefile.pd-linux | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/externals/grill/prepend/makefile.pd-linux b/externals/grill/prepend/makefile.pd-linux deleted file mode 100644 index a7d5df6b..00000000 --- a/externals/grill/prepend/makefile.pd-linux +++ /dev/null @@ -1,69 +0,0 @@ -# prepend - just like in Max/MSP -# Copyright (c) 2002 Thomas Grill (xovo@gmx.net) -# -# Makefile for gcc -# -# usage: make -f makefile.pd-linux -# -# --------------------------------------------- - -NAME=prepend2 - -# where to build -TARGDIR=./pd-linux - -# where to install ### EDIT! ### -INSTDIR=/usr/lib/pd/extra - -# flext stuff ### EDIT! ### -FLEXTPATH=/usr/lib/pd/flext -FLEXTLIB=$(FLEXTPATH)/flext.a - -# compiler+linker stuff ### EDIT! ### -INCLUDES=/usr/lib/pd/include -FLAGS=-DPD -CFLAGS=-O6 -mcpu=pentium -LIBS=m - - -# the rest can stay untouched -# ---------------------------------------------- - -# all the source files from the package -SRCS=main.cpp -HDRS= - -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) - - - - |