aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/xsample/makefile.pd-cygwin
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-12-18 05:04:43 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-12-18 05:04:43 +0000
commit8173cd6fbbe611dcaf5c643f3d3fd4873dde0c19 (patch)
treeec80a284f0cdcf5a3cc7790eb5685880f344530e /externals/grill/xsample/makefile.pd-cygwin
parent2df5c0c5b5fc38fbc2094efe32e86e8516622d23 (diff)
use flext build system
using flext build system updated build system svn path=/trunk/; revision=2408
Diffstat (limited to 'externals/grill/xsample/makefile.pd-cygwin')
-rw-r--r--externals/grill/xsample/makefile.pd-cygwin87
1 files changed, 0 insertions, 87 deletions
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)