From 69db8cf85d3d7b0cc20aad2cee986350fc329fff Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Thu, 31 May 2018 15:28:56 +0200 Subject: [PATCH] Updated Makefile --- Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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!"