CC=gcc CFLAGS=-g -Wall -lstdc++ -Wall -pedantic TARGET=main SRC=main.cpp all: $(CC) -o $(TARGET) $(SRC) $(CFLAGS) run: all ./$(TARGET)