move sboot to the root directory
[open-ath9k-htc-firmware.git] / sboot / utility / Makefile
diff --git a/sboot/utility/Makefile b/sboot/utility/Makefile
new file mode 100755 (executable)
index 0000000..c1fc0ec
--- /dev/null
@@ -0,0 +1,9 @@
+DIRS = bin2hex
+TARGET_DIR = ./bin
+
+all:
+       @mkdir -p $(TARGET_DIR)
+       @for i in $(DIRS) ; do $(MAKE) -C $$i || exit $? ; done
+
+clean :
+       @for i in $(DIRS) ; do $(MAKE) -C $$i clean; done