~ubuntu-branches/debian/sid/ocaml/sid

« back to all changes in this revision

Viewing changes to otherlibs/labltk/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu
  • Date: 2011-04-21 21:35:08 UTC
  • mfrom: (1.1.11 upstream) (12.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110421213508-kg34453aqmb0moha
* Fixes related to -output-obj with g++ (in debian/patches):
  - add Declare-primitive-name-table-as-const-char
  - add Avoid-multiple-declarations-in-generated-.c-files-in
  - fix Embed-bytecode-in-C-object-when-using-custom: the closing
    brace for extern "C" { ... } was missing in some cases

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Top Makefile for mlTk
2
2
 
3
 
SUBDIRS=compiler support lib jpf frx tkanim examples_labltk \
 
3
SUBDIRS=compiler support lib jpf frx examples_labltk \
4
4
        examples_camltk browser
5
5
SUBDIRS_GENERATED=camltk labltk
6
6
 
15
15
        cd lib; $(MAKE)
16
16
        cd jpf; $(MAKE)
17
17
        cd frx; $(MAKE)
18
 
        cd tkanim; $(MAKE)
19
18
        cd browser; $(MAKE)
20
19
 
21
20
allopt:
27
26
        cd lib; $(MAKE) opt
28
27
        cd jpf; $(MAKE) opt
29
28
        cd frx; $(MAKE) opt
30
 
        cd tkanim; $(MAKE) opt
31
29
 
32
30
byte: all
33
31
opt: allopt
52
50
examples_camltk:
53
51
        cd examples_camltk; $(MAKE) all
54
52
 
55
 
install: 
 
53
install:
56
54
        cd support; $(MAKE) install
57
55
        cd lib; $(MAKE) install
58
56
        cd labltk; $(MAKE) install
60
58
        cd compiler; $(MAKE) install
61
59
        cd jpf; $(MAKE) install
62
60
        cd frx; $(MAKE) install
63
 
        cd tkanim; $(MAKE) install
64
61
        cd browser; $(MAKE) install
65
62
 
66
63
installopt:
70
67
        cd camltk; $(MAKE) installopt
71
68
        cd jpf; $(MAKE) installopt
72
69
        cd frx; $(MAKE) installopt
73
 
        cd tkanim; $(MAKE) installopt
74
70
 
75
 
partialclean clean: 
 
71
partialclean clean:
76
72
        for d in $(SUBDIRS); do \
77
73
            cd $$d; $(MAKE) -f Makefile clean; cd ..; \
78
74
        done