Create output directory for bin2hex before compiling
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / 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
10         @rm -r $(TARGET_DIR)