CFLAGS	= -O -c
#DEFS	= -DDEBUG
DEFS	=

.c.o:
	cc ${CFLAGS} ${DEFS} $*.c

minit: minit.o minmain.o
	cc -O -o minit minit.o minmain.o
