From: Aaron Taylor Date: Sat, 5 Oct 2019 07:09:33 +0000 (-0700) Subject: Minor changes to Makefile. (add 'install' hook, clean up flags, etc) X-Git-Url: http://git.subgeniuskitty.com/icmpmonitor/.git/commitdiff_plain/34094b63cf103ff1a22df44aa2c7439c5b23ba1b?ds=inline Minor changes to Makefile. (add 'install' hook, clean up flags, etc) --- diff --git a/Makefile b/Makefile index 0142f6e..4ce49cb 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,16 @@ -# © 2018 Aaron Taylor +# © 2019 Aaron Taylor # See LICENSE file for copyright and license details. #################################################################################################### # Executables -CC = cc +CC = cc #################################################################################################### # Configuration -CC_FLAGS = -fPIC -Wall -pedantic -O2 -SRC_FILES = icmpmonitor.c iniparser/dictionary.c iniparser/iniparser.c +CC_FLAGS = -Wall -pedantic -O2 +SRC_FILES = icmpmonitor.c iniparser/dictionary.c iniparser/iniparser.c #################################################################################################### # Targets @@ -22,3 +22,6 @@ icmpmonitor: clean: @rm -f icmpmonitor icmpmonitor.core + +install: all + @echo "Manually copy the 'icmpmonitor' binary where you please."