OpenXcom Forum

Contributions => Programming => Topic started by: michal on October 21, 2010, 02:17:01 pm

Title: Makefile fix for r165
Post by: michal on October 21, 2010, 02:17:01 pm

In Makefile (most probably Makefile.dingoo too)

line
Quote
SRCS = $(wildcard *.cpp)

needs change to:

Quote
SRCS = $(wildcard *.cpp */*.cpp)

Because now it only compiles main.cpp :)
Title: Re: Makefile fix for r165
Post by: SupSuper on October 22, 2010, 02:22:56 am
The makefile is all fixed up, I'm not sure if it'll make Linux gurus cry tears of joy or horror. :P
Title: Re: Makefile fix for r165
Post by: Daiky on October 22, 2010, 12:21:26 pm
I'm sorry but still a little problem in the 2008 vcproj file:

CommandLine="copy /y ..\deps\SDL\lib\*.dll ..\bin\">
needs to change to
CommandLine="copy /y ..\deps\SDL\lib\*.dll ..\bin\"

without the ">" at the end.
There are 2 occurences in the file.
Title: Re: Makefile fix for r165
Post by: SupSuper on October 22, 2010, 04:42:44 pm
Fixed.