
CC=gcc
CFLAGS=-O -g

funi: funi.c
	$(LINK.c) -o $@ $@.c

clean:
	$(RM) funi *.o *.a *~ \#* core a.out

