CFLAGS=-Wstrict-prototypes -O3 -fno-common -fomit-frame-pointer -DDEBUG -static
CC=gcc
STRIP=/usr/bin/strip
                                                                                                                                           
all: mac-addr
	$(STRIP) mac-addr
                                                                                                                                           
clean:
	rm -f mac-addr

