move sboot to the root directory
[open-ath9k-htc-firmware.git] / sboot / utility / adjust_dep / Makefile
diff --git a/sboot/utility/adjust_dep/Makefile b/sboot/utility/adjust_dep/Makefile
new file mode 100755 (executable)
index 0000000..df158d8
--- /dev/null
@@ -0,0 +1,13 @@
+TARGET = ../bin/adj_dep        # for Linux environment
+#TARGET = ../bin/adj_dep.exe           # for CygWin environment
+
+all: $(TARGET)
+
+$(TARGET):
+       gcc -o $(TARGET) adj_dep.c
+
+install:
+       cp adj_dep ../bin
+
+clean:
+       -rm $(TARGET)