aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2004-05-22 17:21:22 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2004-05-22 17:21:22 +0000
commit1be8e81aed03e32062e12254425829c50163711e (patch)
tree51768a7648cdaae905689f6bb0de9a05029e974c
parentde950d76612b745dab409ed1d1c79931d33f33c9 (diff)
added a comment/suggestion for a change
svn path=/trunk/; revision=1758
-rw-r--r--externals/build/linux/makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/externals/build/linux/makefile b/externals/build/linux/makefile
index 38f331b9..28796623 100644
--- a/externals/build/linux/makefile
+++ b/externals/build/linux/makefile
@@ -4,9 +4,12 @@ prefix=$(DESTDIR)/usr
EXTERNALS = $(shell ls ../src)
STRIP = strip --strip-unneeded -R .note -R .comment
-
all: $(EXTERNALS:.c=.pd_linux)
+# this might be a better way to do this:
+# EXTERNALS := ${patsubst %.c, %.o, ${wildcard *.c}}
+# all: ${EXTERNALS}
+
.SUFFIXES: .pd_linux
LINUXCFLAGS = -fPIC -DPD -DUNIX -O2 -funroll-loops -fomit-frame-pointer \