key/door scripting prototype
[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 MakePot data/locale/messages.pot : $(TRANSLATABLE_SOURCES) ;
26 XGETTEXT_FLAGS on data/locale/messages.pot += -k_ -C ;
27
28 InstallPixmap data/images/engine/icons/supertux.png data/images/engine/icons/supertux.xpm ;
29 InstallDesktop supertux.desktop ;
30 InstallDoc INSTALL README COPYING ;
31 Package INSTALL README COPYING ;
32