#eepromer  Makefile
CFLAGS = -O2
#DEBUG  = -ggdb

all:  eepromer


eepromer:  eepromer.c
		gcc $(CFLAGS) $(DEBUG) eepromer.c  -o eepromer




clean: all
		rm -rf eepromer   
