CC = gcc

# if your system lacks getopt_long, remove the comment from this line
OBJS = redir.o # getopt/getopt.o getopt/getopt1.o

CFLAGS = -O2
LDFLAGS = -s

# solaris, and others, may also need these libraries to link
#LIBS = -lnsl -lsocket

all: redir

redir:		${OBJS}
	${CC} ${LDFLAGS} -o redir ${OBJS} ${LIBS}


