gcc = g++ ccopt = -Wall -O2 -pipe all: $(gcc) $(ccopt) -o main.o -c main.cpp $(gcc) $(ccopt) -o bwt main.o clean: rm -f $(wildcard *.o) bwt