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