Inital commit

This commit is contained in:
2020-05-02 15:23:22 +02:00
commit 97b64e7d46
6 changed files with 96 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
subnetcalc: subnetcalc.c
gcc -Wall -pedantic subnetcalc.c -lm -static -o subnetcalc
docker build . -t subnetcalc
clean: subnetcalc
rm subnetcalc
docker image rm subnetcalc