
CFLAGS  = -s -O2 -Wall
CC=gcc

PROGS =	enter      fdsize     i2split    splitter \
	fdflush    flowpause  myklog     salvage   mytee  \
	holdfifo   stattool   ecor       mycp      mvmany


all  :  $(PROGS)

touch:
	for i in $(PROGS); do touch $$i.c; done

recompile:    touch all

#only for internal use
lists:
	/bin/bash /usr/lib/tbackup/bin/makelists.bash


