Author Topic: Makefile fix for r165  (Read 4408 times)

Offline michal

  • Commander
  • *****
  • Posts: 629
    • View Profile
Makefile fix for r165
« 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 :)

Offline SupSuper

  • Lazy Developer
  • Administrator
  • Commander
  • *****
  • Posts: 2160
    • View Profile
Re: Makefile fix for r165
« Reply #1 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

Offline Daiky

  • Battlescape Programmer
  • Administrator
  • Commander
  • *****
  • Posts: 904
    • View Profile
Re: Makefile fix for r165
« Reply #2 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.

Offline SupSuper

  • Lazy Developer
  • Administrator
  • Commander
  • *****
  • Posts: 2160
    • View Profile
Re: Makefile fix for r165
« Reply #3 on: October 22, 2010, 04:42:44 pm »
Fixed.