From 293f18985e3b9ffdf3956768e2fa3c299ac80992 Mon Sep 17 00:00:00 2001 From: "B. Bogart" Date: Tue, 30 Sep 2003 17:17:09 +0000 Subject: This is the first release of PSO! makefiles for OSX and Linux only, borrowed from pool and prepend. svn path=/trunk/externals/bbogart/; revision=1054 --- pso/makefile.pd-linux | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 pso/makefile.pd-linux (limited to 'pso/makefile.pd-linux') diff --git a/pso/makefile.pd-linux b/pso/makefile.pd-linux new file mode 100644 index 0000000..aa6a721 --- /dev/null +++ b/pso/makefile.pd-linux @@ -0,0 +1,69 @@ +# PSO - Particle Swarm Optimizer - Copyright Ben Bogart 2003 +# makefile adapted from prepend - Copyright (c) 2002 Thomas Grill (xovo@gmx.net) +# +# Makefile for gcc +# +# usage: make -f makefile.pd-linux +# +# --------------------------------------------- + +NAME=pso + +# where to build +TARGDIR=./pd-linux + +# where to install ### EDIT! ### +INSTDIR= + +# flext stuff ### EDIT! ### +FLEXTPATH=/usr/local/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) + + + + -- cgit v1.2.1