summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorKevin Krammer <kevin.krammer@gmx.at>2006-03-21 20:27:09 +0000
committerKevin Krammer <kevin.krammer@gmx.at>2006-03-21 20:27:09 +0000
commit76e2c9cf157606f73b297f9a3dbd53125fc82510 (patch)
tree6d443c49d78ac0878c1af6d726ed1d408e65fe5d /Makefile.in
Importing initial collection of unified desktop access scripts
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in33
1 files changed, 33 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
new file mode 100644
index 0000000..b2e7892
--- /dev/null
+++ b/Makefile.in
@@ -0,0 +1,33 @@
+SUBDIRS = scripts
+
+all: $(SUBDIRS)
+install: $(SUBDIRS:%=%/__install__)
+uninstall: $(SUBDIRS:%=%/__uninstall__)
+clean: $(SUBDIRS:%=%/__clean__)
+distclean: clean $(SUBDIRS:%=%/__distclean__)
+ rm -f config.* Makefile
+ rm -rf autom4te.cache
+
+help:
+ @echo "Usage: make [all|install|uninstall|clean|distclean]"
+ @echo ""
+ @echo "The default target is 'all', which will build the files in the scripts/ directory"
+
+.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:%=%/__distclean__): dummy
+ cd `dirname $@` && $(MAKE) distclean
+