mirror of
https://github.com/zerotier/lf.git
synced 2026-05-22 16:24:00 -07:00
17 lines
283 B
Makefile
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:
|