fixes tests deps rule, changed to one line
[libbear.git] / targets.mk
CommitLineData
318de304
PG
1
2# LIB: the target of the lib directory
7bbc50a4
PG
3G_LIB := lib
4.PHONY: ${G_LIB}
318de304 5
7bbc50a4
PG
6G_LIB_OBJS := lib-objs
7.PHONY: ${G_LIB_OBJS}
318de304 8
7bbc50a4
PG
9G_LIB_DEPS := lib-deps
10.PHONY: ${G_LIB_DEPS}
318de304
PG
11
12# TESTS: build all of the tests
7bbc50a4
PG
13G_TESTS := tests
14.PHONY: ${G_TESTS}
318de304 15
7bbc50a4 16L_CLEANCMDS += cleanbin
caa7531c
PG
17.PHONY: cleanbin
18cleanbin:
19
7bbc50a4 20L_CLEANCMDS += cleanobjs
caa7531c
PG
21.PHONY: cleanobjs
22cleanobjs:
23
7bbc50a4 24L_CLEANCMDS += cleandeps
caa7531c
PG
25.PHONY: cleandeps
26cleandeps:
27
7bbc50a4 28L_CLEANCMDS += clean
caa7531c
PG
29.PHONY: clean
30clean: cleanobjs
31
7bbc50a4 32L_CLEANCMDS += cleanall
caa7531c
PG
33.PHONY: cleanall
34cleanall: cleanbin cleanobjs cleandeps