Files
lf/Makefile
T
2019-06-07 08:56:05 -07:00

17 lines
283 B
Makefile

# Makefile for easily building LF on MacOS, Linux, BSD, etc.
UNAME_S := $(shell uname -s | tr '[:upper:]' '[:lower:]')
all: lf
lf: native
go build cmd/lf/lf.go
native: FORCE
cc -O3 -c -o native/db_$(UNAME_S).o native/db.c
clean: FORCE
rm -rf lf lf-db-test native/*.o
FORCE: