From: Garrett C. <yab...@us...> - 2010-02-02 08:52:06
|
Update of /cvsroot/ltp/ltp/testcases/realtime In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv796/testcases/realtime Modified Files: Makefile Log Message: testcases/realtime/config.mk isn't a hard requirement for autotools and %clean. Signed-off-by: Garrett Cooper <yan...@gm...> Index: Makefile =================================================================== RCS file: /cvsroot/ltp/ltp/testcases/realtime/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile 2 Feb 2010 08:42:47 -0000 1.9 --- Makefile 2 Feb 2010 08:51:53 -0000 1.10 *************** *** 30,34 **** --- 30,40 ---- include $(top_srcdir)/include/mk/env_pre.mk + # Ensure that this error / warning only applies for build targets. + # + # NOTE (garrcoop): this criterium should be in-sync with include/mk/env_pre.mk + # (minus help as that's only invoked in the top-level Makefile). + ifeq ($(filter autotools %clean,$(MAKECMDGOALS)),) include $(abs_srcdir)/config.mk + endif LIBDIR := lib |