#makefile for stnet
# removed /usr from BIN path; added -common to cc line -d.miller 12july92


SRCS =  stnet.c getpar.c

OBJS =  stnet.o getpar.o

INCL = /usr/include/stdio.h /usr/include/sgtty.h /usr/include/sys/ioctl.h
BIN=/local/bin


stnet: ${OBJS} ${INCL}
	cc -o -common stnet ${OBJS}

install: stnet
	install -s stnet $(BIN)

stnet.o: ${INCL}
getpar.o: ${INCL}
