diff options
-rw-r--r-- | externals/build/linux/makefile | 5 |
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 \ |