diff options
author | Brian Cully <bjc@kublai.com> | 2012-02-06 19:44:47 -0500 |
---|---|---|
committer | Brian Cully <github.20.shmit@spamgourmet.com> | 2012-02-06 19:46:56 -0500 |
commit | 50f3c688a7cd4819680dbd19b9933c6cb5e62ca7 (patch) | |
tree | 5d9bf2edac40d874ec05bafc1e1e38b443879ce3 /Makefile | |
parent | d3b118481833acd44d724c06ce8c9d6b6ff2838a (diff) | |
download | mysqlerl-50f3c688a7cd4819680dbd19b9933c6cb5e62ca7.tar.gz mysqlerl-50f3c688a7cd4819680dbd19b9933c6cb5e62ca7.zip |
Move most files into lib, add top-level makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f431ef2 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: all install test + +all: + @@cd lib/src && make all + +install: + @@cd lib/src && make install + +test: + @@cd lib/test && make test |