CC=g++ OFILES=main.o ask.o getans.o CFLAGS=-Wall -O2 BIN=shift all: shift shift: $(OFILES) $(CC) $(CFLAGS) -o $(BIN) $(OFILES) clean: rm -f *.o shift