X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2FJamfile;h=6d29ef0bf38367c96bb04f0fdfbe586352348086;hb=7fbc38d9c2fda9bfb10eeb7ecb3db36c3daa2824;hp=3b93511f455953134336b6d636f83a9d469d34d3;hpb=efc61e9d05b077f13a76982590fb0bd6a9d8dc61;p=supertux.git diff --git a/src/Jamfile b/src/Jamfile index 3b93511f4..6d29ef0bf 100644 --- a/src/Jamfile +++ b/src/Jamfile @@ -3,11 +3,12 @@ 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 ] [ Wildcard badguy : *.cpp *.hpp ] + [ Wildcard binreloc : *.c *.h ] [ Wildcard control : *.cpp *.hpp ] [ Wildcard gui : *.cpp *.hpp ] [ Wildcard lisp : *.cpp *.hpp ] @@ -18,13 +19,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) ; -C++Flags supertux : -DAPPDATADIR='\"$(appdatadir)\"' ; +#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 ;