]> arthur.barton.de Git - ax-linux.git/commitdiff
Update "Makefile.ax" to current ax-make version
authorAlexander Barton <alex@barton.de>
Mon, 5 May 2014 18:23:12 +0000 (20:23 +0200)
committerAlexander Barton <alex@barton.de>
Mon, 5 May 2014 18:23:12 +0000 (20:23 +0200)
Makefile.ax

index da7fb75792b3baa84ff5e8b6463b504552a7731a..180ce3c51ffb5681cea53b9551ea1a1dc00f6dbe 100644 (file)
@@ -1,10 +1,10 @@
 #
-# ax-linux: Alex' Linux Tools & Scripts
-# Copyright (c)2013 Alexander Barton (alex@barton.de)
+# ax-make: Alex' Simple Makefile System
+# Copyright (c)2014 Alexander Barton (alex@barton.de)
 #
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
+# This library is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as published
+# by the Free Software Foundation; either version 2.1 of the License, or
 # (at your option) any later version.
 #
 
@@ -21,43 +21,23 @@ all-ax: $(ALL) $(SUBDIRS)
 
 clean: clean-ax clean-local
 
-clean-ax:
-       $(AX_SILENT)for subdir in $(SUBDIRS); do \
-         $(MAKE) -C $$subdir clean || exit 1; \
-        done
-
 distclean: clean-local distclean-ax distclean-local
 
-distclean-ax:
-       $(AX_SILENT)for subdir in $(SUBDIRS); do \
-         $(MAKE) -C $$subdir distclean || exit 1; \
-        done
-
 maintainer-clean: clean-local distclean-local maintainer-clean-ax maintainer-clean-local
 
-maintainer-clean-ax:
-       $(AX_SILENT)for subdir in $(SUBDIRS); do \
-         $(MAKE) -C $$subdir maintainer-clean || exit 1; \
-        done
-
-check: check-ax check-local
-
-check-ax:
-       $(AX_SILENT)for subdir in $(SUBDIRS); do \
-         $(MAKE) -C $$subdir check || exit 1; \
-        done
+check: check-pre check-ax check-local check-post
 
 install: install-ax install-local
 
-install-ax:
+all-ax clean-ax distclean-ax maintainer-clean-ax check-ax install-ax:
        $(AX_SILENT)for subdir in $(SUBDIRS); do \
-         $(MAKE) -C $$subdir install || exit 1; \
+         target=`echo "$@" | sed -e 's/-ax$$//'`; \
+         echo "Making \"$$target\" in \"$$subdir\" ..."; \
+         $(MAKE) -C $$subdir $$target || exit 1; \
         done
 
-$(SUBDIRS):
-       $(MAKE) -C $@
-
 .PHONY: all clean distclean maintainer-clean check install
 .PHONY: all-ax clean-ax distclean-ax maintainer-clean-ax check-ax install-ax
 .PHONY: all-local clean-local distclean-local maintainer-clean-local check-local install-local
+.PHONY: check-pre check-post
 .PHONY: $(SUBDIRS)