diff options
Diffstat (limited to 'popup')
-rw-r--r-- | popup/makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/popup/makefile b/popup/makefile index 6b85a4e..b70f5c3 100644 --- a/popup/makefile +++ b/popup/makefile @@ -1,5 +1,5 @@ current: - echo make pd_linux, pd_nt, pd_irix5, or pd_irix6 + echo make pd_darwin, pd_linux, pd_nt, pd_irix5, or pd_irix6 clean: ; rm -f popup.pd_{linux,nt,irix?,darwin} *.o @@ -12,7 +12,7 @@ pd_nt: popup.dll PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo VC="D:\Program Files\Microsoft Visual Studio\Vc98" -PDNTINCLUDE = /I. /I\tcl\include /I..\..\src /I$(VC)\include +PDNTINCLUDE = /I. /I\tcl\include /I..\..\src /I..\..\..\pd\src /I$(VC)\include PDNTLDIR = $(VC)\lib PDNTLIB = $(PDNTLDIR)\libc.lib \ @@ -38,7 +38,7 @@ pd_irix5: popup.pd_irix5 SGICFLAGS5 = -o32 -DPD -DUNIX -DIRIX -O2 -SGIINCLUDE = -I../../src/ +SGIINCLUDE = -I../../src/ -I../../../pd/src .c.pd_irix5: cc $(SGICFLAGS5) $(SGIINCLUDE) -o $*.o -c $*.c @@ -55,7 +55,7 @@ LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \ -Wall -W -Wshadow -Wstrict-prototypes -Werror \ -Wno-unused -Wno-parentheses -Wno-switch -LINUXINCLUDE = -I../../src +LINUXINCLUDE = -I../../src -I../../../pd/src .c.pd_linux: cc $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c |