From 8173cd6fbbe611dcaf5c643f3d3fd4873dde0c19 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Sat, 18 Dec 2004 05:04:43 +0000 Subject: use flext build system using flext build system updated build system svn path=/trunk/; revision=2408 --- externals/grill/xsample/makefile.pd-cygwin | 87 ------------------------------ 1 file changed, 87 deletions(-) delete mode 100644 externals/grill/xsample/makefile.pd-cygwin (limited to 'externals/grill/xsample/makefile.pd-cygwin') diff --git a/externals/grill/xsample/makefile.pd-cygwin b/externals/grill/xsample/makefile.pd-cygwin deleted file mode 100644 index 077d4ce4..00000000 --- a/externals/grill/xsample/makefile.pd-cygwin +++ /dev/null @@ -1,87 +0,0 @@ -# xsample - extended sample objects for Max/MSP and pd (pure data) -# Copyright (c) 2001-2004 Thomas Grill (xovo@gmx.net) -# -# Makefile for gcc @ cygwin -# -# usage: -# to build run "make -f makefile.pd-cygwin" -# to install (as root), do "make -f makefile.pd-cygwin install" -# - -CONFIG=config-pd-cygwin.txt -MAKEFILE=makefile.pd-cygwin - -include ${CONFIG} - - -# compiler stuff -# /usr/include holds the cygwin pthread headers and must be first! -INCLUDES=/usr/include $(PDINC) - -FLAGS=-DFLEXT_SYS=2 -CFLAGS=-O2 -funroll-loops -fmove-all-movables -frerun-loop-opt -finline-functions -fno-rtti -fno-exceptions ${UFLAGS} - -PDLIBS=$(PD)/bin/pd.dll $(PD)/bin/pthreadVC.dll - - -ifdef FLEXT_SHARED - -CFLAGS+=-DFLEXT_SHARED -FLEXTLIB=$(FLEXTPATH)/flext.dll - -else - -FLEXTLIB=$(FLEXTPATH)/flext-pdwin.lib - -endif - - -# ---------------------------------------------- -# the rest can stay untouched -# ---------------------------------------------- - -NAME=xsample - -include make-files.txt - -TARGET=$(TARGDIR)/$(NAME).dll - -# default target -all: $(TARGDIR) $(TARGET) - -$(patsubst %,$(SRCDIR)/%,$(SRCS)): $(patsubst %,$(SRCDIR)/%,$(HDRS)) $(MAKEFILE) $(CONFIG) - touch $(patsubst %,$(SRCDIR)/%,$(SRCS)) - -$(TARGDIR): - -mkdir $(TARGDIR) - -$(TARGDIR)/%.o : $(SRCDIR)/%.cpp - $(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@ - -$(TARGET) : $(patsubst %.cpp,$(TARGDIR)/%.o,$(SRCS)) $(FLEXTLIB) - $(CXX) -shared $(LDFLAGS) $^ ${PDLIBS} $(patsubst %,-l%,$(LIBS)) -o $@ - strip --strip-unneeded $@ - chmod 755 $@ - -$(INSTDIR): - -mkdir $(INSTDIR) - -install:: $(INSTDIR) - -install:: $(TARGET) - cp $^ $(INSTDIR) -# chown root.root $(patsubst %,$(INSTDIR)/%,$(notdir $^)) - -$(HELPDIR): - -mkdir $(HELPDIR) - -install-help:: $(HELPDIR) - -install-help:: ./pd - chmod 644 $^/*.* - cp $^/*.* $(HELPDIR) - - -.PHONY: clean -clean: - rm -f $(TARGDIR)/*.o $(TARGET) -- cgit v1.2.1