use proper enum
[supertux.git] / Jamfile
1 # warning for people who try jam install
2 actions InstallWarning
3 {
4     echo "****************************************************************"
5     echo "* WARNING: Installation is currently broken                    *"
6     echo "* Please start the game directly from source directory instead *"
7     echo "****************************************************************"
8     sleep 5
9 }
10
11 InstallWarning installwarning ;
12 Always installwarning ;
13 Depends install : installwarning ;
14
15
16 SubDir TOP ;
17
18 # Decend into subdirs
19 SubInclude TOP tools miniswig ;
20 SubInclude TOP src ;
21 SubInclude TOP data ;
22
23 UseAutoconf ;
24
25 # add some additional files to package
26 Package INSTALL NEWS README COPYING AUTHORS ChangeLog ;
27
28 MakePot data/locale/messages.pot : $(TRANSLATABLE_SOURCES) ;
29 XGETTEXT_FLAGS on data/locale/messages.pot += --language=C++ ;
30
31 InstallPixmap data/images/engine/icons/supertux.png data/images/engine/icons/supertux.xpm ;
32 InstallDesktop supertux.desktop ;
33 InstallDoc NEWS README COPYING AUTHORS ChangeLog ;