From: Patrik Gornicz Date: Mon, 8 Jun 2009 03:28:01 +0000 (-0400) Subject: added a targets file to describe general targets X-Git-Tag: libbear-premerge~68 X-Git-Url: http://gitweb.pgornicz.com/?a=commitdiff_plain;h=318de304cccaa8cc417065fbe92c2624c999e265;p=libbear.git added a targets file to describe general targets --- diff --git a/Makefile b/Makefile index 777d976..d648676 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,10 @@ BUILD := DEBUG .PHONY: all all: -.PHONY: tests -tests: +# Include the variables that describe targets +include targets.mk + +all: ${LIB} DIRMK := dir.mk diff --git a/targets.mk b/targets.mk new file mode 100644 index 0000000..72b77c6 --- /dev/null +++ b/targets.mk @@ -0,0 +1,15 @@ + +# LIB: the target of the lib directory +LIB := lib +.PHONY: ${LIB} + +#LIB_OBJS := lib-objs +#.PHONY: ${LIB_OBJS} + +#LIB_DEPS := lib-deps +#.PHONY: ${LIB_DEPS} + +# TESTS: build all of the tests +TESTS := tests +.PHONY: ${TESTS} +