section, category and icon fixes
[awish.git] / Jamrules.awish
blob37905f6ae1e62f9ea1d15947b56699088b193c5d
1 rule SDLMain {
2   local n ;
4   for n in $(<) {
5     #echo "$(n:S)" ;
6     Main "$(<)$(SUFEXE)" : $(>) ;
7     #LinkLibraries "$(<)$(SUFEXE)" : libcruel.a $(LIBFLARE_A) ;
8     if $(WINDOZE) {
9       if ! $(NOSOUND) { WINDOZE_SDL_MIXER = $(TOP)/windoze/libs/SDL_mixer.dll ; } else { WINDOZE_SDL_MIXER = ; }
10       LinkSharedLibraries "$(<)$(SUFEXE)" :
11         $(TOP)/windoze/libs/SDL.dll
12         $(WINDOZE_SDL_MIXER)
13       ;
14     }
15   }