CC = g++ DEBUG = -ggdb #DEBUG = -g CCARGS += $(DEBUG) -Wno-deprecated -Wall sourcefiles = $(wildcard *.cpp) executables = $(patsubst %.cpp,%,$(sourcefiles)) all: $(executables) %: %.cpp $(CC) $(CCARGS) $< -o $@ clean: rm -f $(executables)