Skip to content

Instantly share code, notes, and snippets.

@cengiz-io
Created December 18, 2014 14:05
Show Gist options
  • Save cengiz-io/e05d2f53f876be515624 to your computer and use it in GitHub Desktop.
Save cengiz-io/e05d2f53f876be515624 to your computer and use it in GitHub Desktop.
.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