CC=cc
CFLAGS= -Wall -O2 -I.

.c.o:
	${CC} ${CFLAGS} -c $*.c

all: fsplit

fsplit: fsplit.c
	${CC} ${CFLAGS} fsplit.c -o fsplit

clean:
	 rm fsplit

