23 lines
		
	
	
		
			695 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			695 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #-Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic -Wno-padded
 | |
| CXX	?= g++
 | |
| CXX_FLAGS = -Wall -Wextra -pedantic -std=c++11 -pthread -I../include -fmax-errors=1 -Wconversion -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic -Wno-padded -Wno-weak-vtables -Wno-global-constructors
 | |
| CXX_RELEASE_FLAGS = -O3 -march=native
 | |
| CXX_DEBUG_FLAGS= -g
 | |
| 
 | |
| all:	example 
 | |
| debug:	example-debug
 | |
| 
 | |
| example: example.cpp
 | |
| 	$(CXX) example.cpp -o example $(CXX_FLAGS) $(CXX_RELEASE_FLAGS) $(CXXFLAGS)
 | |
| 
 | |
| 
 | |
| example-debug: example.cpp
 | |
| 	$(CXX) example.cpp -o example-debug $(CXX_FLAGS) $(CXX_DEBUG_FLAGS) $(CXXFLAGS)
 | |
| 
 | |
| clean:
 | |
| 	rm -f *.o logs/*.txt example example-debug
 | |
| 
 | |
| 
 | |
| rebuild: clean all
 | |
| rebuild-debug: clean debug
 |