SOURCE_FILES = ./mkconfig.c OUTPUT=mkconfig build: $(SOURCE_FILES) mkdir -p bin/ && \ gcc -Wall $(CFLAGS) $(LIBS) $(SOURCE_FILES) -o bin/$(OUTPUT) run: bin/$(OUTPUT) compile_db: Makefile bear -- make clean: rm bin/$(OUTPUT)