1 # Time-stamp: <08/06/12 14:28:42 ptr> 2 # 3 # Copyright (c) 2004-2008 4 # Petr Ovtchenkov 5 # 6 # Licensed under the Academic Free License version 3.0 7 # 8 9 SRCROOT := build 10 SUBDIRS := build/lib 11 12 include ${SRCROOT}/Makefiles/gmake/subdirs.mak 13 14 all install depend clean clobber distclean check:: 15 +$(call doinsubdirs,${SUBDIRS}) 16 17 distclean clean depend clobber:: 18 +$(call doinsubdirs,build/test/unit) 19 20 release-shared install-release-shared: 21 +$(call doinsubdirs,${SUBDIRS}) 22 23 install:: 24 ${MAKE} -C build/lib install-headers 25 26 .PHONY: all install depend clean clobber distclean check release-shared install-release-shared 27