summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile47
1 files changed, 47 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile
new file mode 100644
index 0000000..572067b
--- /dev/null
+++ b/tools/Makefile
@@ -0,0 +1,47 @@
+#
+# Makefile for the graphlcd tools
+#
+
+
+-include ../Make.config
+
+### Targets:
+
+all:
+ @$(MAKE) -C convpic all
+ @$(MAKE) -C crtfont all
+ifdef HAVE_FREETYPE2
+ @$(MAKE) -C genfont all
+endif
+ @$(MAKE) -C showpic all
+ @$(MAKE) -C showtext all
+ @$(MAKE) -C lcdtestpattern all
+
+install:
+ @$(MAKE) -C convpic install
+ @$(MAKE) -C crtfont install
+ifdef HAVE_FREETYPE2
+ @$(MAKE) -C genfont install
+endif
+ @$(MAKE) -C showpic install
+ @$(MAKE) -C showtext install
+ @$(MAKE) -C lcdtestpattern install
+
+uninstall:
+ @$(MAKE) -C convpic uninstall
+ @$(MAKE) -C crtfont uninstall
+ifdef HAVE_FREETYPE2
+ @$(MAKE) -C genfont uninstall
+endif
+ @$(MAKE) -C showpic uninstall
+ @$(MAKE) -C showtext uninstall
+ @$(MAKE) -C lcdtestpattern uninstall
+
+clean:
+ @$(MAKE) -C convpic clean
+ @$(MAKE) -C crtfont clean
+ @$(MAKE) -C genfont clean
+ @$(MAKE) -C showpic clean
+ @$(MAKE) -C showtext clean
+ @$(MAKE) -C lcdtestpattern clean
+