summaryrefslogtreecommitdiffstats
path: root/flashtools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'flashtools/Makefile')
-rw-r--r--flashtools/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/flashtools/Makefile b/flashtools/Makefile
new file mode 100644
index 0000000..b8683c9
--- /dev/null
+++ b/flashtools/Makefile
@@ -0,0 +1,10 @@
+TARGETS= flash
+all: $(TARGETS)
+
+clean:
+ rm $(TARGETS)
+
+.cpp:
+ g++ -g `pkg-config --cflags sword` $< -o $@ `pkg-config --libs sword`
+
+