From 77c7a463710ee0a5f95630c07da304fd0d296d3f Mon Sep 17 00:00:00 2001 From: carmen rocco Date: Tue, 8 Mar 2005 21:20:35 +0000 Subject: popen() svn path=/trunk/externals/control/popen/; revision=2606 --- Makefilewin | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 Makefilewin (limited to 'Makefilewin') diff --git a/Makefilewin b/Makefilewin new file mode 100755 index 0000000..07a7c2b --- /dev/null +++ b/Makefilewin @@ -0,0 +1,27 @@ +prefix=../.. + +EXTERNALS = popen.c + +all: $(EXTERNALS:.c=.dll) + +.SUFFIXES: .dll + +CFLAGS = -g -DPD -DNT -Wall -W -Wshadow -Wstrict-prototypes \ + -Wno-unused -Wno-parentheses -Wno-switch + +INCLUDE = -I. -I.. -I$(prefix)/src + +%.dll: %.c + $(CC) $(CFLAGS) $(INCLUDE) -o "$*.o" -c "$*.c" + gcc -shared -o "$*.dll" "$*.o" $(prefix)/bin/pd.dll \ + `test -f $*.libs && cat $*.libs` +clean: + -rm *.dll *.o + +install-doc: + @test -d $(prefix)/doc/5.reference || mkdir -p $(prefix)/doc/5.reference + install *.pd $(prefix)/doc/5.reference + +install: install-doc + @test -d $(prefix)/extra || mkdir -p $(prefix)/extra + install *.dll $(prefix)/extra -- cgit v1.2.1