summaryrefslogtreecommitdiffstats
path: root/src/libavoid/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/libavoid/makefile')
-rw-r--r--src/libavoid/makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/libavoid/makefile b/src/libavoid/makefile
new file mode 100644
index 000000000..e4f83a52d
--- /dev/null
+++ b/src/libavoid/makefile
@@ -0,0 +1,17 @@
+# Convenience stub makefile to call the real Makefile.
+
+
+
+OBJEXT = o
+
+# Explicit so that it's the default rule.
+all:
+ cd .. && $(MAKE) libavoid/all
+
+clean %.a %.$(OBJEXT):
+ cd .. && $(MAKE) libavoid/$@
+
+.PHONY: all clean
+
+.SUFFIXES:
+.SUFFIXES: .a .$(OBJEXT)