unqlitego/Makefile
2013-12-02 14:20:29 +09:00

20 lines
232 B
Makefile

# 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