diff options
author | greg@kroah.com <greg@kroah.com> | 2004-10-06 18:32:41 -0700 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:37:03 -0700 |
commit | 71144b744acb191d357dbfeb85a256389d4fac3b (patch) | |
tree | 15aa6e4ccb9b51c25e14a2b2cfe1c9f278e73f68 /extras/multipath-tools/Makefile | |
parent | 33eae955e24feb2e473b905d64de17ad641e57e0 (diff) |
[PATCH] delete extras/multipath-tools as per the author's request
This is now a standalone package.
Diffstat (limited to 'extras/multipath-tools/Makefile')
-rw-r--r-- | extras/multipath-tools/Makefile | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/extras/multipath-tools/Makefile b/extras/multipath-tools/Makefile deleted file mode 100644 index fa8830082b..0000000000 --- a/extras/multipath-tools/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# Makefile -# -# Copyright (C) 2003 Christophe Varoqui, <christophe.varoqui@free.fr> - -SUBDIRS = libdevmapper devmap_name multipath multipathd - -recurse: - @for dir in $(SUBDIRS); do\ - $(MAKE) -C $$dir ; \ - done - -recurse_clean: - @for dir in $(SUBDIRS); do\ - $(MAKE) -C $$dir clean ; \ - done - -recurse_install: - @for dir in $(SUBDIRS); do\ - $(MAKE) -C $$dir install ; \ - done - -recurse_uninstall: - @for dir in $(SUBDIRS); do\ - $(MAKE) -C $$dir uninstall ; \ - done - -all: recurse - @echo "" - @echo "Make complete" - -clean: recurse_clean - @echo "" - @echo "Make complete" - -spotless: clean - -install: recurse_install - @echo "" - @echo "Make complete" - -uninstall: recurse_uninstall - @echo "" - @echo "Make complete" |