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

Unified Diff: third_party/xdg-utils/Makefile.in

Issue 151098: Patch from mdm@google.com... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 11 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/xdg-utils/LICENSE ('k') | third_party/xdg-utils/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/xdg-utils/Makefile.in
===================================================================
--- third_party/xdg-utils/Makefile.in (revision 0)
+++ third_party/xdg-utils/Makefile.in (revision 0)
@@ -0,0 +1,39 @@
+SUBDIRS = scripts tests
+
+all: $(SUBDIRS)
+install: $(SUBDIRS:%=%/__install__)
+uninstall: $(SUBDIRS:%=%/__uninstall__)
+test: dummy
+ cd tests && $(MAKE) test
+clean: $(SUBDIRS:%=%/__clean__)
+distclean: clean $(SUBDIRS:%=%/__distclean__)
+ rm -f config.* Makefile
+ rm -rf autom4te.cache
+
+release: $(SUBDIRS:%=%/__release__) distclean
+ rm -f *~
+
+help:
+ @echo "Usage: make [install|uninstall|release]"
+
+.PHONY: all install uninstall clean distclean dummy
+dummy:
+
+$(SUBDIRS): dummy
+ @cd $@ && $(MAKE)
+
+$(SUBDIRS:%=%/__uninstall__): dummy
+ cd `dirname $@` && $(MAKE) uninstall
+
+$(SUBDIRS:%=%/__install__): dummy
+ cd `dirname $@` && $(MAKE) install
+
+$(SUBDIRS:%=%/__clean__): dummy
+ cd `dirname $@` && $(MAKE) clean
+
+$(SUBDIRS:%=%/__release__): dummy
+ cd `dirname $@` && $(MAKE) release
+
+$(SUBDIRS:%=%/__distclean__): dummy
+ cd `dirname $@` && $(MAKE) distclean
+
« no previous file with comments | « third_party/xdg-utils/LICENSE ('k') | third_party/xdg-utils/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698