diff options
author | Miller Puckette <millerpuckette@users.sourceforge.net> | 2008-07-04 03:53:15 +0000 |
---|---|---|
committer | Miller Puckette <millerpuckette@users.sourceforge.net> | 2008-07-04 03:53:15 +0000 |
commit | 783aafff32c7e02727e73d86918fa524dfc76e22 (patch) | |
tree | 6530c7f914a406effea6b5623da4a47f6cf1c611 /pd/extra/makefile | |
parent | bc7cefb9a1494094846def83a29b3bed7485e330 (diff) |
many bug fixes.
sigmund~ and bonk~ updates (ongoing)
some new math objects
svn path=/trunk/; revision=10140
Diffstat (limited to 'pd/extra/makefile')
-rw-r--r-- | pd/extra/makefile | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/pd/extra/makefile b/pd/extra/makefile index 944475a1..9b2dd931 100644 --- a/pd/extra/makefile +++ b/pd/extra/makefile @@ -6,7 +6,7 @@ pd_nt: $(NAME).dll .SUFFIXES: .dll -PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo +PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo -D_CRT_SECURE_NO_WARNINGS # VC="C:\Program Files\Microsoft Visual Studio\Vc98" VC = "C:\Program Files\Microsoft Visual Studio 9.0\VC" VSTK = "C:\Program Files\Microsoft SDKs\Windows\v6.0A" @@ -23,36 +23,6 @@ PDNTLIB = /NODEFAULTLIB:libcmt /NODEFAULTLIB:oldnames /NODEFAULTLIB:kernel32 \ cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c link /nologo /dll /export:$(CSYM)_setup $*.obj $(PDNTLIB) -# ----------------------- IRIX 5.x ----------------------- - -pd_irix5: $(NAME).pd_irix5 - -.SUFFIXES: .pd_irix5 - -SGICFLAGS5 = -o32 -DPD -DUNIX -DIRIX -O2 - -SGIINCLUDE = -I../../src - -.c.pd_irix5: - $(CC) $(SGICFLAGS5) $(SGIINCLUDE) -o $*.o -c $*.c - ld -elf -shared -rdata_shared -o $*.pd_irix5 $*.o - rm $*.o - -# ----------------------- IRIX 6.x ----------------------- - -pd_irix6: $(NAME).pd_irix6 - -.SUFFIXES: .pd_irix6 - -SGICFLAGS6 = -n32 -DPD -DUNIX -DIRIX -DN32 -woff 1080,1064,1185 \ - -OPT:roundoff=3 -OPT:IEEE_arithmetic=3 -OPT:cray_ivdep=true \ - -Ofast=ip32 - -.c.pd_irix6: - $(CC) $(SGICFLAGS6) $(SGIINCLUDE) -o $*.o -c $*.c - ld -n32 -IPA -shared -rdata_shared -o $*.pd_irix6 $*.o - rm $*.o - # ----------------------- LINUX i386 ----------------------- pd_linux: $(NAME).pd_linux |