~ubuntu-branches/ubuntu/raring/flac/raring

« back to all changes in this revision

Viewing changes to Makefile.lite

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2007-12-06 16:57:20 UTC
  • mto: (8.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20071206165720-4przr8grn6ha3e3a
Tags: upstream-1.2.1
ImportĀ upstreamĀ versionĀ 1.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
topdir = .
32
32
 
33
 
.PHONY: all doc src libFLAC libFLAC++ share plugin_common plugin_xmms flac metaflac test_grabbag test_libFLAC test_libFLAC++ test_seeking test_streams
34
 
all: doc src
 
33
.PHONY: all doc src examples libFLAC libFLAC++ share plugin_common plugin_xmms flac metaflac test_grabbag test_libFLAC test_libFLAC++ test_seeking test_streams
 
34
all: doc src examples
35
35
 
36
36
DEFAULT_CONFIG = release
37
37
 
46
46
release : all
47
47
 
48
48
doc:
49
 
        (cd $@ ; $(MAKE) -f Makefile.lite)
 
49
        (cd $@ && $(MAKE) -f Makefile.lite)
50
50
 
51
51
src:
52
 
        (cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
52
        (cd $@ && $(MAKE) -f Makefile.lite $(CONFIG))
 
53
 
 
54
examples: src
 
55
        (cd $@ && $(MAKE) -f Makefile.lite $(CONFIG))
53
56
 
54
57
libFLAC:
55
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
58
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
56
59
 
57
60
libFLAC++: libFLAC
58
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
61
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
59
62
 
60
63
share: libFLAC
61
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
64
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
62
65
 
63
66
flac: libFLAC share
64
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
67
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
65
68
 
66
69
metaflac: libFLAC share
67
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
70
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
68
71
 
69
72
plugin_common: libFLAC
70
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
73
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
71
74
 
72
75
plugin_xmms: libFLAC plugin_common
73
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
76
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
74
77
 
75
78
test_seeking: libFLAC
76
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
79
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
77
80
 
78
81
test_streams: libFLAC
79
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
82
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
80
83
 
81
84
test_grabbag: share
82
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
85
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
83
86
 
84
87
test_libFLAC: libFLAC
85
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
88
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
86
89
 
87
90
test_libFLAC++: libFLAC libFLAC++
88
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
 
91
        (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
89
92
 
90
93
test: debug
91
 
        (cd test ; $(MAKE) -f Makefile.lite debug)
 
94
        (cd test && $(MAKE) -f Makefile.lite debug)
92
95
 
93
96
testv: valgrind
94
 
        (cd test ; $(MAKE) -f Makefile.lite valgrind)
 
97
        (cd test && $(MAKE) -f Makefile.lite valgrind)
95
98
 
96
99
testr: release
97
 
        (cd test ; $(MAKE) -f Makefile.lite release)
 
100
        (cd test && $(MAKE) -f Makefile.lite release)
98
101
 
99
102
clean:
100
 
        -(cd doc ; $(MAKE) -f Makefile.lite clean)
101
 
        -(cd src ; $(MAKE) -f Makefile.lite clean)
102
 
        -(cd test ; $(MAKE) -f Makefile.lite clean)
 
103
        -(cd doc && $(MAKE) -f Makefile.lite clean)
 
104
        -(cd src && $(MAKE) -f Makefile.lite clean)
 
105
        -(cd examples && $(MAKE) -f Makefile.lite clean)
 
106
        -(cd test && $(MAKE) -f Makefile.lite clean)