1
0
Fork 0
mirror of https://gitlab.com/niansa/descindex.git synced 2025-03-06 20:48:44 +01:00
descindex/Makefile
2021-09-18 22:27:06 +02:00

10 lines
138 B
Makefile

.PHONY: build bindir clean
build: bindir
$(CXX) -std=c++17 -l fmt -o bin/descindex src/*.cpp
bindir:
mkdir -p bin
clean:
rm -rf bin