2023-09-10 15:39:34 +00:00
|
|
|
.PHONY: build run
|
|
|
|
|
|
|
|
SOURCE := $(shell find db env lib lnd pages public server -type f)
|
|
|
|
|
2023-09-09 20:52:50 +00:00
|
|
|
build: delphi.market
|
|
|
|
|
2023-09-10 15:39:34 +00:00
|
|
|
delphi.market: $(SOURCE)
|
|
|
|
go build -o delphi.market .
|
2023-09-09 20:52:50 +00:00
|
|
|
|
|
|
|
run:
|
2023-09-10 15:39:34 +00:00
|
|
|
go run .
|
2023-09-09 20:52:50 +00:00
|
|
|
|
2023-10-04 13:37:04 +00:00
|
|
|
test:
|
2023-11-03 19:35:34 +00:00
|
|
|
go test -count=1 ./server/... ./db/... ./lnd/...
|