Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile - chess-puzzles - chess puzzle book generator
git clone git://git.codemadness.org/chess-puzzles
Log
Files
Refs
README
LICENSE
---
Makefile (260B)
---
1 build: clean
2 ${CC} -o fen fen.c ${CFLAGS} ${LDFLAGS}
3
4 db:
5 rm -f lichess_db_puzzle.csv.zst lichess_db_puzzle.csv
6 curl -O 'https://database.lichess.org/lichess_db_puzzle.csv.zst'
7 zstd -d < lichess_db_puzzle.csv.zst > lichess_db_puzzle.csv
8
9 clean:
10 rm -f fen
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.