CC = gcc

COPTS = -Wall -O2 -O3

OBJS_O = make_labels.o

make_labels: $(OBJS_O)
	$(CC) $(OBJS_O) $(COPTS) -o make_labels -s
