From 4b9bb3a0789aac299eacd44bba6d3a5638091d95 Mon Sep 17 00:00:00 2001 From: "N.N." Date: Tue, 18 Sep 2007 17:00:04 +0000 Subject: new external: notemono svn path=/trunk/externals/ffext/; revision=8735 --- notemono/makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 notemono/makefile (limited to 'notemono/makefile') diff --git a/notemono/makefile b/notemono/makefile new file mode 100644 index 0000000..1bf18aa --- /dev/null +++ b/notemono/makefile @@ -0,0 +1,28 @@ +PD-PATH=/usr/lib/pd +PD-SCR=/usr/include + + +INCLUDE=-I$(PD-SCR) -I. +LIB=-lc -lm +CC_FLAGS = -DPD -c -Wall +LD_FLAGS = --export-dynamic -shared -o + + +TARGET=notemono.pd_linux +OBJ=notemono.o +#-------------------------------------------------------- + +all: pd_linux + +pd_linux: $(TARGET) + +$(TARGET): $(OBJ) + $(LD) $(LD_FLAGS) $(TARGET) $(OBJ) $(LIB) + strip --strip-unneeded $(TARGET) + chmod 755 $(TARGET) + +.c.o: + $(CC) $(CC_FLAGS) $(INCLUDE) $< + +clean: + rm -f $(OBJ) $(TARGET) -- cgit v1.2.1