Removed unused hatch files.
[supertux.git] / mk / jam / macosx.jam
1 #============================================================================
2 # Jam configuration and actions for MacOS/X
3 # Copyright (C) 2003 by Eric Sunshine <sunshine@sunshineco.com>
4 # Copyright (C) 2006 by Ondrej Hosek <ondra.hosek@gmail.com>
5 #============================================================================
6 SHELL ?= "/bin/sh" ;
7 DEEPCOPY ?= "cp -R" ;
8
9 # Experience seems to indicate that library scanning misbehaves on MacOS/X with
10 # Jam 2.4, consequently we disable it.
11 MACLIBTOOL = "libtool" ;
12 NOARUPDATE = true ;
13 NOARSCAN = true ;
14 actions Archive
15 {
16   $(MACLIBTOOL) -static -o $(<) $(>)
17 }
18
19 #------------------------------------------------------------------------------
20 # Public rules.
21 #------------------------------------------------------------------------------
22
23 # ConstructApplicationTarget target : options
24 #    Constructs the application target name (ie. foo.app for foo)
25 rule ConstructApplicationTarget
26 {
27   return $(<) ;
28 }
29
30 # ConstructLibraryTarget target : options
31 rule ConstructLibraryTarget
32 {
33   return lib$(<).a ;
34 }
35
36 # SystemLinkApplication target : objects : options
37 rule SystemLinkApplication
38 {
39   local target = $($(<)_TARGET) ;
40   Depends $(target) : $(>) ;
41     
42   if $(<)_WHOLE_ARCHIVE
43   {
44     WHOLE_ARCH_BEGIN on $(target) = -Wl,--whole-archive ;
45     WHOLE_ARCH_END on $(target) = -Wl,--no-whole-archive ;
46   }
47
48   LinkApplication $(target) : $(>) ;
49   LIBS on $(target) = $(LIBS) ;
50   Clean clean : $(target) ;
51   Clean $(<)clean : $(target) ;
52 }
53
54 # LinkApplicationConsole exe : objects
55 #    Link a console (non-GUI) appliation from a set of object files.
56 actions LinkApplication bind NEEDLIBS bind NEEDLIBS_WHOLE bind EXTRAOBJECTS
57 {
58   $(MACOSX.ENVIRON)
59   $(LINK) -o $(<) $(>) $(EXTRAOBJECTS) $(NEEDLIBS) $(WHOLE_ARCH_BEGIN) \
60     $(NEEDLIBS_WHOLE) $(WHOLE_ARCH_END) $(LIBS)
61 }
62