libflint/Makefile
Evan Burkey 4b59b4789c
Some checks failed
Test and Deploy / test (push) Failing after 14s
Test and Deploy / docs (push) Failing after 15s
fix compiler warnings
2024-08-13 12:57:36 -07:00

14 lines
206 B
Makefile

CMAKE_OPTS=-DCMAKE_EXPORT_COMPILE_COMMANDS=1
all:
mkdir -p build
cd build && \
cmake ${CMAKE_OPTS} .. && \
$(MAKE) && \
cp compile_commands.json ..
clean:
rm -rf build
rm -f compile_commands.json