diff --git a/Makefile b/Makefile index cdf4be3..dccc4f3 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,12 @@ -install: - @echo "Start compiling..." +packages: + @echo "Installing packages..." + sudo apt-get install g++ + @echo "Finished downloading!" + +compile: + @echo "Compiling..." g++ src/necronda-server.cpp -o bin/necronda-server -std=c++17 -fPIC -pthread -lz -lmagic -lssl -ldl -lcrypto @echo "Finished compiling!" + +install: | packages compile + @echo "Finished!"