mirror of
https://github.com/hoytech/strfry.git
synced 2025-06-19 17:37:43 +00:00
14 lines
342 B
Makefile
14 lines
342 B
Makefile
BIN ?= strfry
|
|
APPS ?= dbutils relay mesh
|
|
OPT ?= -O3 -g
|
|
|
|
include golpe/rules.mk
|
|
|
|
LDLIBS += -lsecp256k1 -lzstd
|
|
INCS += -Iexternal/negentropy/cpp
|
|
|
|
build/StrfryTemplates.h: $(shell find src/tmpls/ -type f -name '*.tmpl')
|
|
perl golpe/external/templar/templar.pl src/tmpls/ strfrytmpl $@
|
|
|
|
src/apps/relay/RelayWebsocket.o: build/StrfryTemplates.h
|