Created
December 18, 2014 14:05
-
-
Save cengiz-io/e05d2f53f876be515624 to your computer and use it in GitHub Desktop.
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
.PHONY: clean app | |
app: | |
g++ \ | |
-pedantic \ | |
-Wall \ | |
-Wextra \ | |
-Wcast-align \ | |
-Wcast-qual \ | |
-Wctor-dtor-privacy \ | |
-Wdisabled-optimization \ | |
-Wformat=2 \ | |
-Winit-self \ | |
-Wlogical-op \ | |
-Wmissing-include-dirs \ | |
-Wnoexcept \ | |
-Wold-style-cast \ | |
-Woverloaded-virtual \ | |
-Wredundant-decls \ | |
-Wshadow \ | |
-Wsign-promo \ | |
-Wstrict-null-sentinel \ | |
-Wstrict-overflow=5 \ | |
-Wswitch-default \ | |
-Wundef \ | |
-Werror \ | |
-Wno-unused \ | |
-O0 -g app.cpp -o app | |
clean: | |
rm app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment