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

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

Issue 151109: Add initial xdg-settings patch to xdg-utils. (Closed) Base URL: http://src.chromium.org/svn/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
« no previous file with comments | « third_party/xdg-utils/README.google ('k') | third_party/xdg-utils/scripts/README » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 MKDIR = mkdir -p 1 MKDIR = mkdir -p
2 RMDIR = rmdir 2 RMDIR = rmdir
3 INSTALL = @INSTALL@ $(INSTALL_FLAGS) 3 INSTALL = @INSTALL@ $(INSTALL_FLAGS)
4 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS) 4 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
5 INSTALL_LIBRARY = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS) 5 INSTALL_LIBRARY = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
6 INSTALL_SCRIPT = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS) 6 INSTALL_SCRIPT = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
7 INSTALL_DATA = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS) 7 INSTALL_DATA = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
8 XMLTO = @XMLTO@ 8 XMLTO = @XMLTO@
9 9
10 prefix = @prefix@ 10 prefix = @prefix@
11 exec_prefix = @exec_prefix@ 11 exec_prefix = @exec_prefix@
12 bindir = @bindir@ 12 bindir = @bindir@
13 mandir = @mandir@ 13 mandir = @mandir@
14 14
15 SCRIPTS = \ 15 SCRIPTS = \
16 xdg-desktop-menu \ 16 xdg-desktop-menu \
17 xdg-desktop-icon \ 17 xdg-desktop-icon \
18 xdg-mime \ 18 xdg-mime \
19 xdg-icon-resource \ 19 xdg-icon-resource \
20 xdg-open \ 20 xdg-open \
21 xdg-email \ 21 xdg-email \
22 xdg-screensaver 22 xdg-screensaver \
23 xdg-settings
23 # xdg-su 24 # xdg-su
24 # xdg-copy \ 25 # xdg-copy \
25 # xdg-file-dialog 26 # xdg-file-dialog
26 # xdg-terminal 27 # xdg-terminal
27 28
28 MANPAGES= $(SCRIPTS:%=man/%.1) 29 MANPAGES= $(SCRIPTS:%=man/%.1)
29 WEBPAGES= $(SCRIPTS:%=%.html) 30 WEBPAGES= $(SCRIPTS:%=%.html)
30 XMLFILES= $(SCRIPTS:%=desc/%.xml) 31 XMLFILES= $(SCRIPTS:%=desc/%.xml)
31 32
32 all: 33 all:
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 %: %.in %.txt 83 %: %.in %.txt
83 awk -f generate-help-script.awk $@.in | sed -e 's/@NAME@/'$@'/g' > $@ 84 awk -f generate-help-script.awk $@.in | sed -e 's/@NAME@/'$@'/g' > $@
84 chmod a+x $@ 85 chmod a+x $@
85 86
86 xdg-desktop-menu: xdg-desktop-menu.in xdg-utils-common.in 87 xdg-desktop-menu: xdg-desktop-menu.in xdg-utils-common.in
87 xdg-desktop-icon: xdg-desktop-icon.in xdg-utils-common.in 88 xdg-desktop-icon: xdg-desktop-icon.in xdg-utils-common.in
88 xdg-email: xdg-email.in xdg-utils-common.in 89 xdg-email: xdg-email.in xdg-utils-common.in
89 xdg-mime: xdg-mime.in xdg-utils-common.in 90 xdg-mime: xdg-mime.in xdg-utils-common.in
90 xdg-open: xdg-open.in xdg-utils-common.in 91 xdg-open: xdg-open.in xdg-utils-common.in
91 xdg-screensaver: xdg-screensaver.in xdg-utils-common.in 92 xdg-screensaver: xdg-screensaver.in xdg-utils-common.in
93 xdg-settings: xdg-settings.in xdg-utils-common.in
92 xdg-icon-resource: xdg-icon-resource.in xdg-utils-common.in 94 xdg-icon-resource: xdg-icon-resource.in xdg-utils-common.in
93 95
94 xdg-su: xdg-su.in xdg-utils-common.in 96 xdg-su: xdg-su.in xdg-utils-common.in
95 xdg-copy: xdg-copy.in xdg-utils-common.in 97 xdg-copy: xdg-copy.in xdg-utils-common.in
96 xdg-file-dialog: xdg-file-dialog.in xdg-utils-common.in 98 xdg-file-dialog: xdg-file-dialog.in xdg-utils-common.in
97 xdg-terminal: xdg-terminal.in xdg-utils-common.in 99 xdg-terminal: xdg-terminal.in xdg-utils-common.in
98 100
99 man/%.1: desc/%.xml 101 man/%.1: desc/%.xml
100 (cd man;$(XMLTO) man ../$<) 102 (cd man;$(XMLTO) man ../$<)
101 103
102 index.html: $(XMLFILES) 104 index.html: $(XMLFILES)
103 (cat html/index.html.pre; \ 105 (cat html/index.html.pre; \
104 xsltproc xsl/refentry2htmlindex.xsl $(XMLFILES); \ 106 xsltproc xsl/refentry2htmlindex.xsl $(XMLFILES); \
105 cat html/index.html.post ) > html/index.html 107 cat html/index.html.post ) > html/index.html
106 108
107 %.html: desc/%.xml 109 %.html: desc/%.xml
108 (cd html;$(XMLTO) html-nochunks ../$<) 110 (cd html;$(XMLTO) html-nochunks ../$<)
109 111
110 %.txt: desc/%.xml 112 %.txt: desc/%.xml
111 $(XMLTO) txt $< 113 $(XMLTO) txt $<
112 114
OLDNEW
« no previous file with comments | « third_party/xdg-utils/README.google ('k') | third_party/xdg-utils/scripts/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698