projects
/
open-ath9k-htc-firmware.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #163 from cloudswei/ctlframe_injection
[open-ath9k-htc-firmware.git]
/
build
/
utility
/
Makefile
1
DIRS = bin2hex
2
TARGET_DIR = ./bin
3
4
all:
5
@mkdir -p $(TARGET_DIR)
6
@for i in $(DIRS) ; do $(MAKE) -C $$i || exit $? ; done
7
8
clean :
9
@for i in $(DIRS) ; do $(MAKE) -C $$i clean; done