New additions:
 - tst_ library code.
 - new quickhit tests
 - more general code cleanup
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..926df0b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+
+CFLAGS+=
+LDFLAGS+=
+
+all: libltp.a
+	@$(MAKE) -C doio $@
+	@$(MAKE) -C tests $@
+
+libltp.a:
+	@$(MAKE) -C lib $@
+
+clean:
+	@$(MAKE) -C lib $@
+	@$(MAKE) -C doio $@
+	@$(MAKE) -C tests $@