CFLAGS += -Wall -Werror -std=c99 -O2

all: bootselect 

bootselect: bootselect.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^

clean:
	rm -f bootselect  *.o *~ *.bak
