This commit is contained in:
nobonobo 2014-02-05 20:42:18 +09:00
commit ef0e8fcbec

20
Makefile Normal file
View file

@ -0,0 +1,20 @@
# for GNU make
.PHONY: all build install test clean
all: build
build: src/unqlite.c
go build
install: src/unqlite.c
go install
clean:
rm -rf src/*
test:
go test ./
src/unqlite.c:
git submodule init
git submodule update