aboutsummaryrefslogtreecommitdiff
path: root/externals/gridflow/Makefile.gf
diff options
context:
space:
mode:
Diffstat (limited to 'externals/gridflow/Makefile.gf')
-rw-r--r--externals/gridflow/Makefile.gf161
1 files changed, 0 insertions, 161 deletions
diff --git a/externals/gridflow/Makefile.gf b/externals/gridflow/Makefile.gf
deleted file mode 100644
index 371929e7..00000000
--- a/externals/gridflow/Makefile.gf
+++ /dev/null
@@ -1,161 +0,0 @@
-# $Id: Makefile.gf,v 1.3 2006-03-15 04:56:39 matju Exp $
-# This is an annex that covers what is not covered by the generated Makefile
-
-SYSTEM = $(shell uname -s | sed -e 's/^MINGW.*/NT/')
-INSTALL_DATA = install -m 644
-INSTALL_LIB = $(INSTALL_DATA)
-INSTALL_DIR = mkdir -p
-
-all2:: gridflow-for-puredata # doc-all
-
-# suffixes (not properly used)
-ifeq (1,1) # Linux, MSWindows with Cygnus, etc
-OSUF = .o
-LSUF = .so
-ESUF =
-else # MSWindows without Cygnus (not supported yet)
-OSUF = .OBJ
-LSUF = .DLL
-ESUF = .EXE
-endif
-
-#----------------------------------------------------------------#
-
-CFLAGS += -Wall # for cleanliness
-# but it's normal to have unused parameters
-#ifeq ($(HAVE_GCC3),yes)
-#CFLAGS += -Wno-unused-parameter
-#else
-CFLAGS += -Wno-unused
-#endif
-
-ifeq ($(HAVE_DEBUG),yes)
- CFLAGS += -O0 # debuggability
-else
- CFLAGS += -O3 -funroll-loops # speed
-endif
-
-CFLAGS += -fno-omit-frame-pointer
-CFLAGS += -g # gdb info
-CFLAGS += -fPIC # some OSes/machines need that for .so files
-
-#----------------------------------------------------------------#
-
-cpu/mmx.asm cpu/mmx_loader.c: cpu/mmx.rb
- $(RUBY_INSTALL_NAME) cpu/mmx.rb cpu/mmx.asm cpu/mmx_loader.c
-
-cpu/mmx.o: cpu/mmx.asm
- nasm -f elf cpu/mmx.asm -o cpu/mmx.o
-
-clean2::
- rm -f $(OBJS) base/*.fcs format/*.fcs cpu/*.fcs
-
-install2:: ruby-install puredata-install
- (cd devices4ruby; make install)
-
-uninstall:: ruby-uninstall
- # add uninstallation of other files here.
-
-unskew::
- find . -mtime -0 -ls -exec touch '{}' ';'
-
-kloc::
- wc base/*.[ch] format/*.[cm] bridge/*.c optional/*.c 2>/dev/null
- wc base/*.rb format/*.rb bridge/*.rb devices4ruby/*.rb \
- optional/*.rb configure extra/*.rb 2>/dev/null
-
-edit::
- (nedit base/grid.[ch] base/number.c base/flow_objects.c \
- base/flow_objects.rb base/main.c \
- */main.rb base/test.rb &)
-
-CONF = config.make config.h Makefile
-BACKTRACE = ([ -f core ] && gdb `which ruby` core)
-TEST = base/test.rb math
-
-test::
- rm -f core
- ($(RUBY_INSTALL_NAME) -w $(TEST)) || $(BACKTRACE)
-
-VALG = NO_MMX=1 valgrind --suppressions=extra/gf.valgrind2 -v
-VALG += --num-callers=8
-VALG += --show-reachable=yes
-# VALG += --gdb-attach=yes
-
-vtest::
- rm -f core
- ($(VALG) $(RUBY_INSTALL_NAME) -w $(TEST) &> gf-valgrind) || $(BACKTRACE)
- less gf-valgrind
-
-vvtest::
- rm -f core
- ($(VALG) --leak-check=yes $(RUBY_INSTALL_NAME) -w $(TEST) &> gf-valgrind) || $(BACKTRACE)
- less gf-valgrind
-
-testpd::
- rm -f gridflow.pd_linux && make && \
- rm -f /opt/lib/ruby/site_ruby/1.7/i586-linux/gridflow.so && \
- make && make install && \
- (pd -path . -lib gridflow test.pd || gdb `which pd` core)
-
-munchies::
- $(RUBY_INSTALL_NAME) base/test.rb munchies
-
-foo::
- @echo "LDSOFLAGS = $(LDSOFLAGS)"
-
-#----------------------------------------------------------------#
-
-ifeq ($(HAVE_PUREDATA),yes)
-# pd_linux pd_nt pd_irix5 pd_irix6
-
-ifeq (${SYSTEM},Darwin)
- OS = DARWIN
- PDSUF = .pd_darwin
- PDBUNDLEFLAGS = -bundle -undefined suppress
-else
- ifeq (${SYSTEM},NT)
- OS = NT
- PDSUF = .dll
- PDBUNDLEFLAGS = -shared -I$(PUREDATA_PATH)/src
- PDLIB = -L/usr/local/lib $(LIBRUBYARG_SHARED) $(PUREDATA_PATH)/bin/pd.dll
- else
- OS = LINUX
- PDSUF = .pd_linux
- endif
-endif
-
-PD_LIB = gridflow$(PDSUF)
-
-$(PD_LIB): bridge/puredata.c.fcs base/grid.h $(CONF)
- $(CXX) -Ibundled/pd $(LDSOFLAGS) $(BRIDGE_LDFLAGS) $(CFLAGS) $(PDBUNDLEFLAGS) \
- $< -xnone -o $@
-
-gridflow-for-puredata:: $(PD_LIB)
-
-DOK = $(PUREDATA_PATH)/doc/5.reference/gridflow
-
-puredata-install::
- mkdir -p $(DOK)/flow_classes
- cp pd_help/*.pd $(DOK)
- cp doc/*.html $(DOK)
- cp doc/flow_classes/*.p* $(DOK)/flow_classes
- cp -r images/ $(PUREDATA_PATH)/extra/gridflow
- cp $(PD_LIB) pd_abstractions/*.pd $(PUREDATA_PATH)/extra
- for z in camera_control motion_detection color mouse centre_of_gravity fade \
- apply_colormap_channelwise checkers contrast posterize ravel remap_image solarize spread \
- rgb_to_greyscale greyscale_to_rgb rgb_to_yuv yuv_to_rgb; do \
- cp pd_abstractions/\#$$z.pd $(PUREDATA_PATH)/extra/\@$$z.pd; done
-
-else
-
-gridflow-for-puredata::
- @#nothing
-
-puredata-install::
- @#nothing
-
-endif # HAVE_PUREDATA
-
-beep::
- @for z in 1 2 3 4 5; do echo -ne '\a'; sleep 1; done