21 lines
		
	
	
		
			538 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			538 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #OBJS specifies which files to compile as part of the project
 | |
| OBJS = 01_hello_SDL.cpp
 | |
| 
 | |
| #CC specifies which compiler to use
 | |
| CC = clang
 | |
| 
 | |
| #COMPILER_FLAGS specifies the additional compilation options we're using
 | |
| # -w suppress all warnings
 | |
| COMPILER_FLAGS = -w
 | |
| 
 | |
| #LINKER_FLAGS specifies the libraries we're linking against
 | |
| LINKER_FLAGS = -lSDL2
 | |
| 
 | |
| #OBJ_NAME specifies the name of our executable
 | |
| OBJ_NAME= 01_hello_SDL
 | |
| 
 | |
| #This is the target that compiles our executable
 | |
| all	:	$(OBJS)
 | |
| 	$(CC) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o $(OBJ_NAME)
 | |
| 
 |