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

Side by Side Diff: third_party/xdg-utils/tests/Makefile.in

Issue 151098: Patch from mdm@google.com... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 11 years, 5 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
OLDNEW
(Empty)
1 MKDIR = mkdir -p
2 RMDIR = rmdir
3 INSTALL = @INSTALL@ $(INSTALL_FLAGS)
4 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
5 INSTALL_LIBRARY = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
6 INSTALL_SCRIPT = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
7 INSTALL_DATA = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
8 XMLTO = @XMLTO@
9
10 prefix = @prefix@
11 exec_prefix = @exec_prefix@
12 bindir = @bindir@
13 mandir = @mandir@
14
15 all:
16
17 release:
18 rm -rf xdg-su tmp
19 rm -f xdg-test.log *~
20
21 test:
22 ./testrun -IRC
23 rm -rf tmp/xdgt*
24
25 distclean: clean
26 rm -f Makefile
27
28 clean:
29 rm -rf tmp/xdgt*
30
31 tests-userclean:
32 find ${HOME} -name 'xdgtestdata*' | xargs rm -rf
33 find ${HOME} -name 'x-xdg*.xml' | xargs rm -f
34 find ${HOME}/.kde/share/mimelnk -name 'x-xdg*.desktop' | xargs rm -f
35
36 tests-clean: tests-userclean
37 find `echo "${XDG_DATA_DIRS}:/usr/local/share/:/usr/share/:${XDG_CONFIG_ DIRS}:/etc/xdg" | sed -e 's/:/ /g'` -name 'xdgtestdata*' | xargs rm -rf
38 find `echo "${XDG_DATA_DIRS}:/usr/local/share/:/usr/share/:${XDG_CONFIG_ DIRS}:/etc/xdg" | sed -e 's|:| |g'` -name 'x-xdgt*' | xargs rm -f
39
40 install:
41
42 uninstall:
43
44 doc:
45 perl doc_gen.pl
OLDNEW
« no previous file with comments | « third_party/xdg-utils/scripts/xsl/sharedmime2mimelnk.xsl ('k') | third_party/xdg-utils/tests/NOTES » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698