diff options
author | carmen rocco <ix9@users.sourceforge.net> | 2004-04-08 22:01:30 +0000 |
---|---|---|
committer | carmen rocco <ix9@users.sourceforge.net> | 2004-04-08 22:01:30 +0000 |
commit | d879b9b95bad60487702dab073d766414b3b9ffd (patch) | |
tree | 9fe4980b153345315b33cad3cfb1c4f19f110c7e /Makefile | |
parent | d8e4c552f0e58ddb76dc3991c37ce13557eb8a2e (diff) |
windows support, random & socket using .c's need twking tho...
svn path=/trunk/externals/unauthorized/; revision=1580
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 55 |
1 files changed, 10 insertions, 45 deletions
@@ -1,18 +1,9 @@ CC=gcc -OS_NAME=$(shell uname -s) +EXT=$(shell uname -s | sed -e 's/^[lL]/pd_l/' | sed -e 's/^[dD]/pd_d/' | sed -e 's/MINGW.*/dll/') -#echo $(OS_NAME) - -# this needs to also recognize MINGW_NT-5.0 -# also, XP uses CYGWIN_NT-5.1 and MINGW_NT-5.1 -ifneq "$(OS_NAME)" "CYGWIN_NT-5.0" -EXT=pd_$(shell uname -s | sed -e 's/L/l/' | sed -e 's/D/d/') # This is Miller's default install location INSTALL_PREFIX=/usr/local/lib/pd -else -EXT=dll -endif # find all files to compile TARGETS=$(subst .tk,.tk2c,$(wildcard */*.tk)) $(subst .c,.$(EXT),$(wildcard */*.c)) @@ -27,46 +18,20 @@ current: $(EXT) ./tk2c.bash < $*.tk > $*.tk2c -# ----------------------- MINGW-NT ----------------------- - -pd_nt: $(TARGETS) +# ----------------------- Windows ----------------------- -MINGW_CFLAGS = -DPD -DUNIX -DICECAST -O2 -funroll-loops -fomit-frame-pointer \ - -Wall -W -Wno-shadow -Wstrict-prototypes -g \ - -Wno-unused -Wno-parentheses -Wno-switch \ - -mno-cygwin -c -DBUILD_DLL +dll: $(TARGETS) -MINGW_INCLUDE = -I../../src -I../../pd/src +WINCFLAGS = -DPD -DNT -DICECAST -funroll-loops \ + -Wall -W -Wno-shadow -Wstrict-prototypes \ + -Wno-unused -Wno-parentheses -Wno-switch -MINGW_LFLAGS = -L../../pd/bin -lpd +WININCLUDE = -I../../src -I../../pd/src -.c.dll: CURRENT_DIR = `echo $* | cut -d '/' -f 1` .c.dll: - $(CC) $(MINGW_CFLAGS) $(MINGW_INCLUDE) -o $*.o -c $*.c - ld -export_dynamic -shared -o $*.dll $*.o -lc -lm $(MINGW_LFLAGS) -# strip --strip-unneeded $*.dll -# dllwrap --target=i386-mingw32 -mno-cygwin --output-lib=lib$*.a \ -# --dllname=$*.dll --driver-name=gcc $*.o $(MINGW_LFLAGS) -# -rm $*.o - -# PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo -# VC="C:\Program Files\Microsoft Visual Studio\Vc98" - -# PDNTINCLUDE = /I. /I\tcl\include /I\ftp\pd\src /I$(VC)\include - -# PDNTLDIR = $(VC)\lib -# PDNTLIB = $(PDNTLDIR)\libc.lib \ -# $(PDNTLDIR)\oldnames.lib \ -# $(PDNTLDIR)\kernel32.lib \ -# \ftp\pd\bin\pd.lib - -# .c.ont: -# cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c - -# .c.dll: -# cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c -# need to find a way to replace $(CSYM) -# link /dll /export:$(CSYM)_setup $*.obj $(PDNTLIB) + $(CC) $(WINCFLAGS) $(WININCLUDE) -o $*.o -c $*.c + gcc -shared -o $*.dll $*.o ../../bin/pd.dll -lpthreadGC + -rm $*.o # ----------------------- IRIX 5.x ----------------------- |