projects
/
libbear.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
added a targets file to describe general targets
[libbear.git]
/
targets.mk
Commit
Line
Data
318de304
PG
1
2
# LIB: the target of the lib directory
3
LIB := lib
4
.PHONY: ${LIB}
5
6
#LIB_OBJS := lib-objs
7
#.PHONY: ${LIB_OBJS}
8
9
#LIB_DEPS := lib-deps
10
#.PHONY: ${LIB_DEPS}
11
12
# TESTS: build all of the tests
13
TESTS := tests
14
.PHONY: ${TESTS}
15