2013-11-26 14:04:27 +00:00
|
|
|
# for GNU make
|
2013-11-28 12:24:46 +00:00
|
|
|
.PHONY: all build install test clean
|
2013-11-26 14:04:27 +00:00
|
|
|
|
2013-11-28 12:18:59 +00:00
|
|
|
all: build
|
|
|
|
|
2013-12-02 05:20:29 +00:00
|
|
|
build: src/unqlite.c
|
2013-11-28 12:18:59 +00:00
|
|
|
go build
|
|
|
|
|
2013-12-02 05:20:29 +00:00
|
|
|
install: src/unqlite.c
|
2013-11-28 12:08:19 +00:00
|
|
|
go install
|
2013-11-27 00:25:59 +00:00
|
|
|
|
2013-11-28 12:18:59 +00:00
|
|
|
clean:
|
|
|
|
rm -rf src/*
|
|
|
|
|
|
|
|
test:
|
|
|
|
go test ./
|
|
|
|
|
2013-11-27 00:25:59 +00:00
|
|
|
src/unqlite.c:
|
|
|
|
git submodule init
|
|
|
|
git submodule update
|