applied farnkerls patch to handle the jam commandline limitation problems
[supertux.git] / src / Jamfile
index 3b93511..c401c98 100644 (file)
@@ -3,7 +3,7 @@ SubDir TOP src ;
 SubInclude TOP src squirrel ;
 SubInclude TOP src scripting ;
 
-sources = 
+sources =
     [ Wildcard *.cpp *.hpp ]
     [ Wildcard audio : *.cpp *.hpp ]
     [ Wildcard audio/newapi : *.cpp *.hpp ]
@@ -18,13 +18,15 @@ sources =
     [ Wildcard tinygettext : *.cpp *.hpp ]
     [ Wildcard trigger : *.cpp *.hpp ]
     [ Wildcard video : *.cpp *.hpp ]
+    [ Wildcard worldmap : *.cpp *.hpp ]
 ;
 TRANSLATABLE_SOURCES += [ SearchSource $(sources) ] ;
 
-Application supertux : $(sources) $(wrapper_objects) ;
+#Application supertux : $(sources) $(wrapper_objects) ;
+Application supertux : $(sources) $(wrapper_objects) : linkerfile ;
 C++Flags supertux : -DAPPDATADIR='\"$(appdatadir)\"' ;
 LinkWith supertux : squirrel ;
-ExternalLibs supertux : SDL SDLIMAGE GL GLU OPENAL VORBIS VORBISFILE OGG ICONV PHYSFS BINRELOC ;
+ExternalLibs supertux : SDL SDLIMAGE GL OPENAL VORBIS VORBISFILE OGG ICONV PHYSFS BINRELOC ;
 Help supertux : "Build the supertux executable" ;
-IncludeDir supertux : squirrel/include ;
+IncludeDir supertux : squirrel/include squirrel ;