This repository has been archived on 2024-10-21. You can view files and clone it, but cannot push or open issues or pull requests.
furao-link/Makefile

16 lines
412 B
Makefile
Raw Normal View History

2024-05-13 16:24:21 +00:00
CROW_URL = https://github.com/CrowCpp/Crow/releases/download/v1.1.0/crow_all.h
CROW_HASH = 9e710a3fa5170b736c500ad283d8ed5d178ee88cd530224efd02a348dd655ffb
SRCS = $(wildcard src/*.cpp) $(wildcard src/*.h)
CC = g++
all: src/crow_all.h kisalt
2024-02-02 19:50:21 +00:00
kisalt: $(SRCS)
2024-02-04 11:26:25 +00:00
$(CC) -o $@ $^ -lcrypto -ljsoncpp
2024-05-13 16:24:21 +00:00
src/crow_all.h:
wget -q --show-progress $(CROW_URL) -O src/crow_all.h
echo "$(CROW_HASH) $@" | sha256sum -c