
#   Utilities
#
#   every .c file is compiled, linked, and made into an executable.
all: handd shutdown netmount netstat

handd : handd.c
   lc -L handd.c

shutdown : shutdown.c
   lc -L shutdown

netmount : netmount.c
   lc -L netmount

netstat : netstat.c netstat.h
   lc -L netstat
