Skip to content

Instantly share code, notes, and snippets.

@superzazu
Last active September 22, 2019 10:04
Show Gist options
  • Save superzazu/515de8e684553a087c5d203dda5ddc77 to your computer and use it in GitHub Desktop.
Save superzazu/515de8e684553a087c5d203dda5ddc77 to your computer and use it in GitHub Desktop.
Minimal Makefile for C++ projects
bin = my_program_name
src = $(wildcard *.cpp)
obj = $(src:.cpp=.o)
CXXFLAGS = -g -Wall -Wextra -O2 -std=c++11 -pedantic $(shell pkg-config --cflags sdl2 SDL2_mixer)
LDFLAGS = $(shell pkg-config --libs sdl2 SDL2_mixer)
.PHONY: all clean
all: $(bin)
$(bin): $(obj)
clean:
-rm $(bin) $(obj)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment