X-Git-Url: http://git.subgeniuskitty.com/icmpmonitor/.git/blobdiff_plain/33858ce29a9e9d3d7085e90aa0d0ed65dad93977..d13ac0ded9915f6b50d60227e7824a274f066a72:/Makefile 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."