~ubuntu-branches/ubuntu/oneiric/lightning-extension/oneiric-security

« back to all changes in this revision

Viewing changes to mozilla/config/makefiles/test/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-09-03 14:00:01 UTC
  • mfrom: (1.3.6)
  • Revision ID: package-import@ubuntu.com-20120903140001-p2ut61qe3m41n3hn
Tags: 1.8+build1-0ubuntu0.11.10.1
* New upstream stable release to support Thunderbird 16 (CALENDAR_1_8_BUILD1)
  - LP: #1062587

* Add extra Makefiles that are needed for the build
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
include $(topsrcdir)/config/makefiles/makeutils.mk
17
17
 
18
18
dir-ts = .deps/test
19
 
check-arglist     = $(dir-ts)/arglist.ts
20
 
check-autotargets = $(dir-ts)/autotargets_mk.ts
21
 
check-XinY        = $(dir-ts)/check_XinY_mk.ts
 
19
check-arglist        = $(dir-ts)/arglist.ts
 
20
check-autotargets    = $(dir-ts)/autotargets_mk.ts
 
21
check-export-targets = $(dir-ts)/export-targets-mk.ts
 
22
check-XinY           = $(dir-ts)/check_XinY_mk.ts
 
23
check-xpidl          = $(dir-ts)/xpidl-mk.ts
22
24
check-tests =\
23
25
  $(check-arglist) \
24
26
  $(check-autotargets) \
 
27
  $(check-export-targets) \
25
28
  $(check-XinY) \
 
29
  $(check-xpidl) \
26
30
  $(NULL)
27
31
 
28
32
 
33
37
 
34
38
clean:
35
39
        $(RM) $(check-tests)
 
40
        @$(MAKE) --no-print-directory -f $(srcdir)/check-xpidl.mk clean-xpidl topsrcdir=$(topsrcdir)
36
41
 
37
42
###########################################################################
38
43
## Logic processed at compile time so be selective about when to test
101
106
        @$(TOUCH) $@
102
107
# </CHECK: autotargets.mk>
103
108
 
104
 
endif #} findstring check
 
109
 
 
110
###########################################################################
 
111
# <CHECK: export-targets.mk>
 
112
check-export-targets-preqs=\
 
113
  $(call mkdir_deps,$(dir-ts)) \
 
114
  $(topsrcdir)/config/makefiles/makeutils.mk \
 
115
  $(topsrcdir)/config/makefiles/target_export.mk \
 
116
  $(srcdir)/check-export-targets.mk \
 
117
  checkup \
 
118
  $(NULL)
 
119
 
 
120
# include then test
 
121
checkup: $(eval include $(srcdir)/check-export-targets.mk)
 
122
 
 
123
$(check-export-targets): $(check-export-targets-preqs)
 
124
        @$(TOUCH) $@
 
125
# </CHECK: export-targets.mk>
 
126
 
 
127
###########################################################################
 
128
##{ <CHECK: xpidl.mk>
 
129
check-xpidl-preqs=\
 
130
  $(call mkdir_deps,$(dir-ts)) \
 
131
  $(topsrcdir)/config/makefiles/makeutils.mk \
 
132
  $(topsrcdir)/config/makefiles/xpidl.mk \
 
133
  $(srcdir)/check-xpidl.mk \
 
134
  $(NULL)
 
135
 
 
136
check-xpidl-args =\
 
137
  "topsrcdir=$(topsrcdir)" \
 
138
  "srcdir=$(srcdir)" \
 
139
  $(NULL)
 
140
$(check-xpidl): $(check-xpidl-preqs)
 
141
        $(MAKE) -f $(srcdir)/check-xpidl.mk check-xpidl $(check-xpidl-args)
 
142
        @$(TOUCH) $@
 
143
#} </check-xpidl.mk>
 
144
 
 
145
endif #} findstring MAKECMDGOAL