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

clean:
	rm -f *.o from to core
