GENERATOR=storage

all: generator

generator: main.cpp
	$(CXX) main.cpp -o $(GENERATOR)

clean:
	rm -f $(GENERATOR)
