continue work on 1-6

This commit is contained in:
2024-06-15 15:56:50 -07:00
parent 5d4bf996c2
commit f7f68e7b2d
3 changed files with 68 additions and 4 deletions

View File

@ -1,6 +1,8 @@
CMAKE_OPTS=-DCMAKE_EXPORT_COMPILE_COMMANDS=1
CMAKE_OPTS=-DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DCMAKE_BUILD_TYPE=Debug
all:
all: clean run
build:
mkdir -p build
cd build && \
cmake ${CMAKE_OPTS} .. && \
@ -10,3 +12,7 @@ all:
clean:
rm -rf build
rm -f compile_commands.json
run: build
build/cryptopals