Last active
September 22, 2019 10:04
-
-
Save superzazu/515de8e684553a087c5d203dda5ddc77 to your computer and use it in GitHub Desktop.
Minimal Makefile for C++ projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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