View Single Post
Old 10th January 2008, 07:09 AM   #5
Andy
Administrator
Professional user
 
Andy's Avatar
 
Join Date: Jun 2003
Posts: 4,563
Default Re: Compiling for GNU/Linux, OSX, and XP

Here's a bit from a windows makefile:

Code:
 
.cpp.p:
cl -DWINDOWS -I..\src -c $*.cpp -o $*.obj /Zi
link /dll /out:$@ $*.obj ..\ac3d.lib /DEBUG /DEBUGTYPE:CV
for a script, you'll need to replace $@ by pluginname.p and $* by the source filename without extension
Andy is offline   Reply With Quote