Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: patches/09_do_not_build_udev_and_examples.patch

Issue 10825123: libmtp: Do not build and install bits we don't need - udev utilities and examples. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libmtp/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« Makefile.am ('K') | « Makefile.in ('k') | util/Makefile.am » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Index: Makefile.am
2 ===================================================================
3 --- Makefile.am (revision 148712)
4 +++ Makefile.am (working copy)
5 @@ -1,4 +1,4 @@
6 -SUBDIRS=src examples util doc
7 +SUBDIRS=src util doc
8 ACLOCAL_AMFLAGS=-I m4
9
10 pkgconfigdir=$(libdir)/pkgconfig
11 @@ -8,17 +8,17 @@
12
13 # This stuff only makes sense on Linux so only
14 # build and ship it on Linux.
15 -if USE_LINUX
16 -udevrulesdir=@UDEV@/rules.d
17 -udevrules_DATA=@UDEV_RULES@
18 -noinst_DATA=libmtp.usermap libmtp.fdi
19 -
20 -libmtp.usermap: util/mtp-hotplug
21 - util/mtp-hotplug > libmtp.usermap
22 -@UDEV_RULES@: util/mtp-hotplug
23 - util/mtp-hotplug -u -p"@UDEV@" @UDEV_GROUP@ @UDEV_MODE@ > @UDEV_RULES@
24 -libmtp.fdi: util/mtp-hotplug
25 - util/mtp-hotplug -H > libmtp.fdi
26 -
27 -CLEANFILES = libmtp.usermap @UDEV_RULES@ libmtp.fdi
28 -endif
29 +#if USE_LINUX
30 +#udevrulesdir=@UDEV@/rules.d
31 +#udevrules_DATA=@UDEV_RULES@
32 +#noinst_DATA=libmtp.usermap libmtp.fdi
33 +#
34 +#libmtp.usermap: util/mtp-hotplug
35 +# util/mtp-hotplug > libmtp.usermap
36 +#@UDEV_RULES@: util/mtp-hotplug
37 +# util/mtp-hotplug -u -p"@UDEV@" @UDEV_GROUP@ @UDEV_MODE@ > @UDEV_RULES@
38 +#libmtp.fdi: util/mtp-hotplug
39 +# util/mtp-hotplug -H > libmtp.fdi
40 +#
41 +#CLEANFILES = libmtp.usermap @UDEV_RULES@ libmtp.fdi
42 +#endif
43 Index: Makefile.in
44 ===================================================================
45 --- Makefile.in (revision 148712)
46 +++ Makefile.in (working copy)
47 @@ -91,9 +91,8 @@
48 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
49 $(am__cd) "$$dir" && rm -f $$files; }; \
50 }
51 -am__installdirs = "$(DESTDIR)$(pkgconfigdir)" \
52 - "$(DESTDIR)$(udevrulesdir)"
53 -DATA = $(noinst_DATA) $(pkgconfig_DATA) $(udevrules_DATA)
54 +am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
55 +DATA = $(pkgconfig_DATA)
56 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
57 distclean-recursive maintainer-clean-recursive
58 AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
59 @@ -272,18 +271,11 @@
60 top_build_prefix = @top_build_prefix@
61 top_builddir = @top_builddir@
62 top_srcdir = @top_srcdir@
63 -SUBDIRS = src examples util doc
64 +SUBDIRS = src util doc
65 ACLOCAL_AMFLAGS = -I m4
66 pkgconfigdir = $(libdir)/pkgconfig
67 pkgconfig_DATA = libmtp.pc
68 EXTRA_DIST = libmtp.pc libmtp.sh COPYING README.windows.txt
69 -
70 -# This stuff only makes sense on Linux so only
71 -# build and ship it on Linux.
72 -@USE_LINUX_TRUE@udevrulesdir = @UDEV@/rules.d
73 -@USE_LINUX_TRUE@udevrules_DATA = @UDEV_RULES@
74 -@USE_LINUX_TRUE@noinst_DATA = libmtp.usermap libmtp.fdi
75 -@USE_LINUX_TRUE@CLEANFILES = libmtp.usermap @UDEV_RULES@ libmtp.fdi
76 all: config.h
77 $(MAKE) $(AM_MAKEFLAGS) all-recursive
78
79 @@ -370,25 +362,7 @@
80 @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
81 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
82 dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
83 -install-udevrulesDATA: $(udevrules_DATA)
84 - @$(NORMAL_INSTALL)
85 - test -z "$(udevrulesdir)" || $(MKDIR_P) "$(DESTDIR)$(udevrulesdir)"
86 - @list='$(udevrules_DATA)'; test -n "$(udevrulesdir)" || list=; \
87 - for p in $$list; do \
88 - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
89 - echo "$$d$$p"; \
90 - done | $(am__base_list) | \
91 - while read files; do \
92 - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(udevrulesdir)'"; \
93 - $(INSTALL_DATA) $$files "$(DESTDIR)$(udevrulesdir)" || exit $$?; \
94 - done
95
96 -uninstall-udevrulesDATA:
97 - @$(NORMAL_UNINSTALL)
98 - @list='$(udevrules_DATA)'; test -n "$(udevrulesdir)" || list=; \
99 - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
100 - dir='$(DESTDIR)$(udevrulesdir)'; $(am__uninstall_files_from_dir)
101 -
102 # This directory's subdirectories are mostly independent; you can cd
103 # into them and run `make' without going through this Makefile.
104 # To change the values of `make' variables: instead of editing Makefiles,
105 @@ -719,7 +693,7 @@
106 all-am: Makefile $(DATA) config.h
107 installdirs: installdirs-recursive
108 installdirs-am:
109 - for dir in "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(udevrulesdir)"; do \
110 + for dir in "$(DESTDIR)$(pkgconfigdir)"; do \
111 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
112 done
113 install: install-recursive
114 @@ -744,7 +718,6 @@
115 mostlyclean-generic:
116
117 clean-generic:
118 - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
119
120 distclean-generic:
121 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
122 @@ -775,7 +748,7 @@
123
124 info-am:
125
126 -install-data-am: install-pkgconfigDATA install-udevrulesDATA
127 +install-data-am: install-pkgconfigDATA
128
129 install-dvi: install-dvi-recursive
130
131 @@ -821,7 +794,7 @@
132
133 ps-am:
134
135 -uninstall-am: uninstall-pkgconfigDATA uninstall-udevrulesDATA
136 +uninstall-am: uninstall-pkgconfigDATA
137
138 .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
139 ctags-recursive install-am install-strip tags-recursive
140 @@ -837,20 +810,29 @@
141 install-dvi-am install-exec install-exec-am install-html \
142 install-html-am install-info install-info-am install-man \
143 install-pdf install-pdf-am install-pkgconfigDATA install-ps \
144 - install-ps-am install-strip install-udevrulesDATA installcheck \
145 - installcheck-am installdirs installdirs-am maintainer-clean \
146 + install-ps-am install-strip installcheck installcheck-am \
147 + installdirs installdirs-am maintainer-clean \
148 maintainer-clean-generic mostlyclean mostlyclean-generic \
149 mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
150 - uninstall uninstall-am uninstall-pkgconfigDATA \
151 - uninstall-udevrulesDATA
152 + uninstall uninstall-am uninstall-pkgconfigDATA
153
154
155 -@USE_LINUX_TRUE@libmtp.usermap: util/mtp-hotplug
156 -@USE_LINUX_TRUE@ util/mtp-hotplug > libmtp.usermap
157 -@USE_LINUX_TRUE@@UDEV_RULES@: util/mtp-hotplug
158 -@USE_LINUX_TRUE@ util/mtp-hotplug -u -p"@UDEV@" @UDEV_GROUP@ @UDEV_MODE@ > @UDEV_RULES@
159 -@USE_LINUX_TRUE@libmtp.fdi: util/mtp-hotplug
160 -@USE_LINUX_TRUE@ util/mtp-hotplug -H > libmtp.fdi
161 +# This stuff only makes sense on Linux so only
162 +# build and ship it on Linux.
163 +#if USE_LINUX
164 +#udevrulesdir=@UDEV@/rules.d
165 +#udevrules_DATA=@UDEV_RULES@
166 +#noinst_DATA=libmtp.usermap libmtp.fdi
167 +#
168 +#libmtp.usermap: util/mtp-hotplug
169 +# util/mtp-hotplug > libmtp.usermap
170 +#@UDEV_RULES@: util/mtp-hotplug
171 +# util/mtp-hotplug -u -p"@UDEV@" @UDEV_GROUP@ @UDEV_MODE@ > @UDEV_RULES@
172 +#libmtp.fdi: util/mtp-hotplug
173 +# util/mtp-hotplug -H > libmtp.fdi
174 +#
175 +#CLEANFILES = libmtp.usermap @UDEV_RULES@ libmtp.fdi
176 +#endif
177
178 # Tell versions [3.59,3.63) of GNU make to not export all variables.
179 # Otherwise a system limit (for SysV at least) may be exceeded.
180 Index: util/Makefile.am
181 ===================================================================
182 --- util/Makefile.am (revision 148712)
183 +++ util/Makefile.am (working copy)
184 @@ -1,11 +1,11 @@
185 -if USE_LINUX
186 -bin_PROGRAMS=mtp-hotplug
187 -mtp_hotplug_SOURCES=mtp-hotplug.c
188 +#if USE_LINUX
189 +#bin_PROGRAMS=mtp-hotplug
190 +#mtp_hotplug_SOURCES=mtp-hotplug.c
191 +#
192 +#mtp_probedir=@UDEV@
193 +#mtp_probe_PROGRAMS=mtp-probe
194 +#mtp_probe_SOURCES=mtp-probe.c
195 +#endif
196
197 -mtp_probedir=@UDEV@
198 -mtp_probe_PROGRAMS=mtp-probe
199 -mtp_probe_SOURCES=mtp-probe.c
200 -endif
201 -
202 AM_CPPFLAGS=-I$(top_builddir)/src
203 LDADD=../src/libmtp.la
204 Index: util/Makefile.in
205 ===================================================================
206 --- util/Makefile.in (revision 148712)
207 +++ util/Makefile.in (working copy)
208 @@ -15,6 +15,14 @@
209
210 @SET_MAKE@
211
212 +#if USE_LINUX
213 +#bin_PROGRAMS=mtp-hotplug
214 +#mtp_hotplug_SOURCES=mtp-hotplug.c
215 +#
216 +#mtp_probedir=@UDEV@
217 +#mtp_probe_PROGRAMS=mtp-probe
218 +#mtp_probe_SOURCES=mtp-probe.c
219 +#endif
220 VPATH = @srcdir@
221 pkgdatadir = $(datadir)/@PACKAGE@
222 pkgincludedir = $(includedir)/@PACKAGE@
223 @@ -34,8 +42,6 @@
224 POST_UNINSTALL = :
225 build_triplet = @build@
226 host_triplet = @host@
227 -@USE_LINUX_TRUE@bin_PROGRAMS = mtp-hotplug$(EXEEXT)
228 -@USE_LINUX_TRUE@mtp_probe_PROGRAMS = mtp-probe$(EXEEXT)
229 subdir = util
230 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
231 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
232 @@ -50,36 +56,8 @@
233 CONFIG_HEADER = $(top_builddir)/config.h
234 CONFIG_CLEAN_FILES =
235 CONFIG_CLEAN_VPATH_FILES =
236 -am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mtp_probedir)"
237 -PROGRAMS = $(bin_PROGRAMS) $(mtp_probe_PROGRAMS)
238 -am__mtp_hotplug_SOURCES_DIST = mtp-hotplug.c
239 -@USE_LINUX_TRUE@am_mtp_hotplug_OBJECTS = mtp-hotplug.$(OBJEXT)
240 -mtp_hotplug_OBJECTS = $(am_mtp_hotplug_OBJECTS)
241 -mtp_hotplug_LDADD = $(LDADD)
242 -mtp_hotplug_DEPENDENCIES = ../src/libmtp.la
243 -am__mtp_probe_SOURCES_DIST = mtp-probe.c
244 -@USE_LINUX_TRUE@am_mtp_probe_OBJECTS = mtp-probe.$(OBJEXT)
245 -mtp_probe_OBJECTS = $(am_mtp_probe_OBJECTS)
246 -mtp_probe_LDADD = $(LDADD)
247 -mtp_probe_DEPENDENCIES = ../src/libmtp.la
248 -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
249 -depcomp = $(SHELL) $(top_srcdir)/depcomp
250 -am__depfiles_maybe = depfiles
251 -am__mv = mv -f
252 -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
253 - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
254 -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
255 - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
256 - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
257 -CCLD = $(CC)
258 -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
259 - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
260 - $(LDFLAGS) -o $@
261 -SOURCES = $(mtp_hotplug_SOURCES) $(mtp_probe_SOURCES)
262 -DIST_SOURCES = $(am__mtp_hotplug_SOURCES_DIST) \
263 - $(am__mtp_probe_SOURCES_DIST)
264 -ETAGS = etags
265 -CTAGS = ctags
266 +SOURCES =
267 +DIST_SOURCES =
268 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
269 ACLOCAL = @ACLOCAL@
270 AMTAR = @AMTAR@
271 @@ -211,15 +189,11 @@
272 top_build_prefix = @top_build_prefix@
273 top_builddir = @top_builddir@
274 top_srcdir = @top_srcdir@
275 -@USE_LINUX_TRUE@mtp_hotplug_SOURCES = mtp-hotplug.c
276 -@USE_LINUX_TRUE@mtp_probedir = @UDEV@
277 -@USE_LINUX_TRUE@mtp_probe_SOURCES = mtp-probe.c
278 AM_CPPFLAGS = -I$(top_builddir)/src
279 LDADD = ../src/libmtp.la
280 all: all-am
281
282 .SUFFIXES:
283 -.SUFFIXES: .c .lo .o .obj
284 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
285 @for dep in $?; do \
286 case '$(am__configure_deps)' in \
287 @@ -250,187 +224,19 @@
288 $(ACLOCAL_M4): $(am__aclocal_m4_deps)
289 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
290 $(am__aclocal_m4_deps):
291 -install-binPROGRAMS: $(bin_PROGRAMS)
292 - @$(NORMAL_INSTALL)
293 - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
294 - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
295 - for p in $$list; do echo "$$p $$p"; done | \
296 - sed 's/$(EXEEXT)$$//' | \
297 - while read p p1; do if test -f $$p || test -f $$p1; \
298 - then echo "$$p"; echo "$$p"; else :; fi; \
299 - done | \
300 - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
301 - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
302 - sed 'N;N;N;s,\n, ,g' | \
303 - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
304 - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
305 - if ($$2 == $$4) files[d] = files[d] " " $$1; \
306 - else { print "f", $$3 "/" $$4, $$1; } } \
307 - END { for (d in files) print "f", d, files[d] }' | \
308 - while read type dir files; do \
309 - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
310 - test -z "$$files" || { \
311 - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOO LFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
312 - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$ ?; \
313 - } \
314 - ; done
315
316 -uninstall-binPROGRAMS:
317 - @$(NORMAL_UNINSTALL)
318 - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
319 - files=`for p in $$list; do echo "$$p"; done | \
320 - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
321 - -e 's/$$/$(EXEEXT)/' `; \
322 - test -n "$$list" || exit 0; \
323 - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
324 - cd "$(DESTDIR)$(bindir)" && rm -f $$files
325 -
326 -clean-binPROGRAMS:
327 - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
328 - echo " rm -f" $$list; \
329 - rm -f $$list || exit $$?; \
330 - test -n "$(EXEEXT)" || exit 0; \
331 - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
332 - echo " rm -f" $$list; \
333 - rm -f $$list
334 -install-mtp_probePROGRAMS: $(mtp_probe_PROGRAMS)
335 - @$(NORMAL_INSTALL)
336 - test -z "$(mtp_probedir)" || $(MKDIR_P) "$(DESTDIR)$(mtp_probedir)"
337 - @list='$(mtp_probe_PROGRAMS)'; test -n "$(mtp_probedir)" || list=; \
338 - for p in $$list; do echo "$$p $$p"; done | \
339 - sed 's/$(EXEEXT)$$//' | \
340 - while read p p1; do if test -f $$p || test -f $$p1; \
341 - then echo "$$p"; echo "$$p"; else :; fi; \
342 - done | \
343 - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
344 - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
345 - sed 'N;N;N;s,\n, ,g' | \
346 - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
347 - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
348 - if ($$2 == $$4) files[d] = files[d] " " $$1; \
349 - else { print "f", $$3 "/" $$4, $$1; } } \
350 - END { for (d in files) print "f", d, files[d] }' | \
351 - while read type dir files; do \
352 - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
353 - test -z "$$files" || { \
354 - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOO LFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(mtp_probedir)$$di r'"; \
355 - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(mtp_probedir)$$dir" || e xit $$?; \
356 - } \
357 - ; done
358 -
359 -uninstall-mtp_probePROGRAMS:
360 - @$(NORMAL_UNINSTALL)
361 - @list='$(mtp_probe_PROGRAMS)'; test -n "$(mtp_probedir)" || list=; \
362 - files=`for p in $$list; do echo "$$p"; done | \
363 - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
364 - -e 's/$$/$(EXEEXT)/' `; \
365 - test -n "$$list" || exit 0; \
366 - echo " ( cd '$(DESTDIR)$(mtp_probedir)' && rm -f" $$files ")"; \
367 - cd "$(DESTDIR)$(mtp_probedir)" && rm -f $$files
368 -
369 -clean-mtp_probePROGRAMS:
370 - @list='$(mtp_probe_PROGRAMS)'; test -n "$$list" || exit 0; \
371 - echo " rm -f" $$list; \
372 - rm -f $$list || exit $$?; \
373 - test -n "$(EXEEXT)" || exit 0; \
374 - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
375 - echo " rm -f" $$list; \
376 - rm -f $$list
377 -mtp-hotplug$(EXEEXT): $(mtp_hotplug_OBJECTS) $(mtp_hotplug_DEPENDENCIES) $(EXTR A_mtp_hotplug_DEPENDENCIES)
378 - @rm -f mtp-hotplug$(EXEEXT)
379 - $(LINK) $(mtp_hotplug_OBJECTS) $(mtp_hotplug_LDADD) $(LIBS)
380 -mtp-probe$(EXEEXT): $(mtp_probe_OBJECTS) $(mtp_probe_DEPENDENCIES) $(EXTRA_mtp_ probe_DEPENDENCIES)
381 - @rm -f mtp-probe$(EXEEXT)
382 - $(LINK) $(mtp_probe_OBJECTS) $(mtp_probe_LDADD) $(LIBS)
383 -
384 -mostlyclean-compile:
385 - -rm -f *.$(OBJEXT)
386 -
387 -distclean-compile:
388 - -rm -f *.tab.c
389 -
390 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mtp-hotplug.Po@am__quote@
391 -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mtp-probe.Po@am__quote@
392 -
393 -.c.o:
394 -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
395 -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
396 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDE PBACKSLASH@
397 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
398 -@am__fastdepCC_FALSE@ $(COMPILE) -c $<
399 -
400 -.c.obj:
401 -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
402 -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
403 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDE PBACKSLASH@
404 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
405 -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
406 -
407 -.c.lo:
408 -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $ @ $<
409 -@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
410 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMD EPBACKSLASH@
411 -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
412 -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
413 -
414 mostlyclean-libtool:
415 -rm -f *.lo
416
417 clean-libtool:
418 -rm -rf .libs _libs
419 -
420 -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
421 - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
422 - unique=`for i in $$list; do \
423 - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
424 - done | \
425 - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
426 - END { if (nonempty) { for (i in files) print i; }; }'`; \
427 - mkid -fID $$unique
428 tags: TAGS
429 +TAGS:
430
431 -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
432 - $(TAGS_FILES) $(LISP)
433 - set x; \
434 - here=`pwd`; \
435 - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
436 - unique=`for i in $$list; do \
437 - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
438 - done | \
439 - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
440 - END { if (nonempty) { for (i in files) print i; }; }'`; \
441 - shift; \
442 - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
443 - test -n "$$unique" || unique=$$empty_fix; \
444 - if test $$# -gt 0; then \
445 - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
446 - "$$@" $$unique; \
447 - else \
448 - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
449 - $$unique; \
450 - fi; \
451 - fi
452 ctags: CTAGS
453 -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
454 - $(TAGS_FILES) $(LISP)
455 - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
456 - unique=`for i in $$list; do \
457 - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
458 - done | \
459 - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
460 - END { if (nonempty) { for (i in files) print i; }; }'`; \
461 - test -z "$(CTAGS_ARGS)$$unique" \
462 - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
463 - $$unique
464 +CTAGS:
465
466 -GTAGS:
467 - here=`$(am__cd) $(top_builddir) && pwd` \
468 - && $(am__cd) $(top_srcdir) \
469 - && gtags -i $(GTAGS_ARGS) "$$here"
470
471 -distclean-tags:
472 - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
473 -
474 distdir: $(DISTFILES)
475 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
476 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
477 @@ -463,11 +269,8 @@
478 done
479 check-am: all-am
480 check: check-am
481 -all-am: Makefile $(PROGRAMS)
482 +all-am: Makefile
483 installdirs:
484 - for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mtp_probedir)"; do \
485 - test -z "$$dir" || $(MKDIR_P) "$$dir"; \
486 - done
487 install: install-am
488 install-exec: install-exec-am
489 install-data: install-data-am
490 @@ -500,14 +303,11 @@
491 @echo "it deletes files that may require special tools to rebuild."
492 clean: clean-am
493
494 -clean-am: clean-binPROGRAMS clean-generic clean-libtool \
495 - clean-mtp_probePROGRAMS mostlyclean-am
496 +clean-am: clean-generic clean-libtool mostlyclean-am
497
498 distclean: distclean-am
499 - -rm -rf ./$(DEPDIR)
500 -rm -f Makefile
501 -distclean-am: clean-am distclean-compile distclean-generic \
502 - distclean-tags
503 +distclean-am: clean-am distclean-generic
504
505 dvi: dvi-am
506
507 @@ -521,13 +321,13 @@
508
509 info-am:
510
511 -install-data-am: install-mtp_probePROGRAMS
512 +install-data-am:
513
514 install-dvi: install-dvi-am
515
516 install-dvi-am:
517
518 -install-exec-am: install-binPROGRAMS
519 +install-exec-am:
520
521 install-html: install-html-am
522
523 @@ -550,14 +350,12 @@
524 installcheck-am:
525
526 maintainer-clean: maintainer-clean-am
527 - -rm -rf ./$(DEPDIR)
528 -rm -f Makefile
529 maintainer-clean-am: distclean-am maintainer-clean-generic
530
531 mostlyclean: mostlyclean-am
532
533 -mostlyclean-am: mostlyclean-compile mostlyclean-generic \
534 - mostlyclean-libtool
535 +mostlyclean-am: mostlyclean-generic mostlyclean-libtool
536
537 pdf: pdf-am
538
539 @@ -567,25 +365,20 @@
540
541 ps-am:
542
543 -uninstall-am: uninstall-binPROGRAMS uninstall-mtp_probePROGRAMS
544 +uninstall-am:
545
546 .MAKE: install-am install-strip
547
548 -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
549 - clean-generic clean-libtool clean-mtp_probePROGRAMS ctags \
550 - distclean distclean-compile distclean-generic \
551 - distclean-libtool distclean-tags distdir dvi dvi-am html \
552 - html-am info info-am install install-am install-binPROGRAMS \
553 +.PHONY: all all-am check check-am clean clean-generic clean-libtool \
554 + distclean distclean-generic distclean-libtool distdir dvi \
555 + dvi-am html html-am info info-am install install-am \
556 install-data install-data-am install-dvi install-dvi-am \
557 install-exec install-exec-am install-html install-html-am \
558 - install-info install-info-am install-man \
559 - install-mtp_probePROGRAMS install-pdf install-pdf-am \
560 - install-ps install-ps-am install-strip installcheck \
561 - installcheck-am installdirs maintainer-clean \
562 - maintainer-clean-generic mostlyclean mostlyclean-compile \
563 - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
564 - tags uninstall uninstall-am uninstall-binPROGRAMS \
565 - uninstall-mtp_probePROGRAMS
566 + install-info install-info-am install-man install-pdf \
567 + install-pdf-am install-ps install-ps-am install-strip \
568 + installcheck installcheck-am installdirs maintainer-clean \
569 + maintainer-clean-generic mostlyclean mostlyclean-generic \
570 + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
571
572
573 # Tell versions [3.59,3.63) of GNU make to not export all variables.
OLDNEW
« Makefile.am ('K') | « Makefile.in ('k') | util/Makefile.am » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698