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 9SRCROOT := build 10SUBDIRS := build/lib 11 12include ${SRCROOT}/Makefiles/gmake/subdirs.mak 13 14all install depend clean clobber distclean check:: 15 +$(call doinsubdirs,${SUBDIRS}) 16 17distclean clean depend clobber:: 18 +$(call doinsubdirs,build/test/unit) 19 20release-shared install-release-shared: 21 +$(call doinsubdirs,${SUBDIRS}) 22 23install:: 24 ${MAKE} -C build/lib install-headers 25 26.PHONY: all install depend clean clobber distclean check release-shared install-release-shared 27