mirror of
https://github.com/hoytech/strfry.git
synced 2025-06-21 10:10:46 +00:00
11 lines
188 B
Makefile
11 lines
188 B
Makefile
BIN = strfry
|
|
OPT = -O3 -g
|
|
|
|
include golpe/rules.mk
|
|
|
|
LDLIBS += -lsecp256k1 -lb2 -lzstd
|
|
|
|
test/xor: OPT=-O0 -g
|
|
test/xor: test/xor.cpp
|
|
$(CXX) $(CXXFLAGS) $(INCS) $(LDFLAGS) $(LDLIBS) $< -o $@
|