aboutsummaryrefslogtreecommitdiff
path: root/scrolllist
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-07-31 04:29:23 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:23:30 +0200
commit06d376554facc78c070c50896bced6035e0239ea (patch)
treeea7db208704d44d3d7b2cab54c4c457353f4cdc7 /scrolllist
parent76e9fc3a254f558b23e196176a651bdb28c32e07 (diff)
removed unneeded Makefiles
svn path=/trunk/externals/unauthorized/; revision=15177
Diffstat (limited to 'scrolllist')
-rwxr-xr-xscrolllist/Makefile48
1 files changed, 0 insertions, 48 deletions
diff --git a/scrolllist/Makefile b/scrolllist/Makefile
deleted file mode 100755
index 300a6c2..0000000
--- a/scrolllist/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-NAME=scrolllist
-CSYM=scrolllist
-
-current: pd_linux
-
-INCLUDE = -I../../src
-
-# ----------------------- Mac OSX -----------------------
-
-pd_darwin: $(NAME).pd_darwin
-
-.SUFFIXES: .pd_darwin
-
-DARWINCFLAGS = -DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \
- -Wno-unused -Wno-parentheses -Wno-switch
-
-.c.pd_darwin:
- cc $(DARWINCFLAGS) $(INCLUDE) -o $*.o -c $*.c
- cc -bundle -undefined suppress -flat_namespace -o $*.pd_darwin $*.o
- rm -f $*.o ../$*.pd_darwin
- ln -s $*/$*.pd_darwin ..
-
-
-# ----------------------- LINUX i386 -----------------------
-
-pd_linux: $(NAME).pd_linux
-
-.SUFFIXES: .pd_linux
-
-LINUXCFLAGS = -DPD -DUNIX -O2 -funroll-loops -fomit-frame-pointer \
- -Wall -W -Wno-shadow -Wstrict-prototypes \
- -Wno-unused -Wno-parentheses -Wno-switch -g
-
-.c.pd_linux:
- ./tk2c.bash < $*.tk > $*.tk2c
- gcc $(LINUXCFLAGS) $(INCLUDE) -o $*.o -c $*.c
- ld --export-dynamic -shared -o $*.pd_linux $*.o -lc -lm
- strip --strip-unneeded $*.pd_linux
- rm -f $*.o ../$*.pd_linux
- ln -s $*/$*.pd_linux ..
-
-# ----------------------------------------------------------
-
-install:
- cp help-*.pd ../../doc/5.reference
-
-clean:
- rm -f *.o *.pd_* so_locations