added a bunch of libraries
[vrlugburz] / libs / Makefile
diff --git a/libs/Makefile b/libs/Makefile
new file mode 100644 (file)
index 0000000..323e006
--- /dev/null
@@ -0,0 +1,29 @@
+.PHONY: all
+all: treestore imago drawtext
+
+.PHONY: clean
+clean: clean-treestore clean-imago clean-drawtext
+
+.PHONY: treestore
+treestore:
+       $(MAKE) -C treestore
+
+.PHONY: clean-treestore
+clean-treestore:
+       $(MAKE) -C treestore clean
+
+.PHONY: imago
+imago:
+       $(MAKE) -C imago
+
+.PHONY: clean-imago
+clean-imago:
+       $(MAKE) -C imago clean
+
+.PHONY: drawtext
+drawtext:
+       $(MAKE) -C drawtext
+
+.PHONY: clean-drawtext
+clean-drawtext:
+       $(MAKE) -C drawtext clean