# netpipe v1.0.0 Beta Makefile
#
# This program is distributed under the GNU General Public License. See the
# file COPYING for details.
#
# (c) 1999 by Jan Oberlnder <mindriot@gmx.net>
#
# http://home.t-online.de/home/jan.o/netpipe.html (coming soon)

CC=		gcc
OPT=		-Wall -O2
INSTPATH=	/usr/local/bin/

all :
	$(CC) netpipe.c -o netpipe $(OPT)

clean :
	rm -f netpipe

install :
	if [ ! -d $(INSTPATH) ]; then \
		mkdir $(INSTPATH); \
	fi
	cp netpipe $(INSTPATH) -f
