Update Makefile
This commit is contained in:
parent
1238fa4318
commit
b5eb549502
1 changed files with 2 additions and 7 deletions
9
Makefile
9
Makefile
|
@ -3,14 +3,13 @@
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
build: libunqlite.a
|
build: src/unqlite.c
|
||||||
go build
|
go build
|
||||||
|
|
||||||
install: libunqlite.a
|
install: src/unqlite.c
|
||||||
go install
|
go install
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f libunqlite.a
|
|
||||||
rm -rf src/*
|
rm -rf src/*
|
||||||
|
|
||||||
test:
|
test:
|
||||||
|
@ -19,7 +18,3 @@ test:
|
||||||
src/unqlite.c:
|
src/unqlite.c:
|
||||||
git submodule init
|
git submodule init
|
||||||
git submodule update
|
git submodule update
|
||||||
|
|
||||||
libunqlite.a: src/unqlite.c src/unqlite.h
|
|
||||||
gcc -c src/unqlite.c -I./src -DUNQLITE_ENABLE_THREADS=1
|
|
||||||
ar rv libunqlite.a unqlite.o
|
|
||||||
|
|
Loading…
Reference in a new issue