CC	= cc
CFLAGS	= -DLINUX
LDFLAGS	= -N -s


all:	from to


from:	from.c

to:	to.c

install: from to
	install -o root -g root -m 0755 from ${DEBDIR}/usr/bin/fromport
	install -o root -g root -m 0755 to ${DEBDIR}/usr/bin/toport
	install -o root -g root -m 0644 fromport.1 ${DEBDIR}/usr/man/man1
	install -o root -g root -m 0644 toport.1 ${DEBDIR}/usr/man/man1

clean:
	rm -f *.o from to core
