CFLAGS=-std=gnu11 -Wall -Wextra -O3

all: generator

generator: generator.o

.PHONY: clean

clean:
	rm -f *~
	rm -f *.o
	rm -f generator
