jahan-addison / Makefile
0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність
Generic C++ Makefile
| 1 | ############################## |
| 2 | # Generic C++ Makefile for small to medium projects |
| 3 | # Your should have a "build", a "test", folder, and your code inside a folder of the same name. |
| 4 | # |
| 5 | # Production-ready executables can go in "apps" folder. |
| 6 | ############################## |
| 7 | |
| 8 | CXX := -g++ |
| 9 | CXXFLAGS := -pedantic-errors -std=c++20 -Wall -Wextra -Werror |
| 10 | LDFLAGS := -L/usr/lib -lstdc++ -lm |
Новіше
Пізніше