library-manager/Makefile
SuperNovaa41 444f49e85d Changes CSV to DB
Updates all of the appropriate functions,
updates the release version of the isbn-lookup
2024-01-31 18:24:10 -05:00

7 lines
129 B
Makefile

all: api/*.cpp
g++ api/main.cpp api/isbn-interaction.cpp -lsqlite3 -o manager
mkdir -p bin
mv manager bin/
clean:
rm -rf bin