6 lines
120 B
Makefile
6 lines
120 B
Makefile
subnetcalc: subnetcalc.c
|
|
gcc -std=c99 -Wall -pedantic subnetcalc.c -lm -o subnetcalc
|
|
|
|
clean: subnetcalc
|
|
rm subnetcalc
|