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


all:	from to


from:	from.c

to:	to.c

install:
	cp from to $(BINROOTDIR)/usr/sbin

clean:
	rm -f *.o  core from to
