init commit
This commit is contained in:
20
lazyfoodSDL/04_keypress/Makefile
Normal file
20
lazyfoodSDL/04_keypress/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
#OBJS specifies which files to compile as part of the project
|
||||
OBJS = test.cpp
|
||||
|
||||
#CC specifies which compiler to use
|
||||
CC = g++
|
||||
|
||||
#COMPILER_FLAGS specifies the additional compilation options we're using
|
||||
# -w suppress all warnings
|
||||
COMPILER_FLAGS = -Wall
|
||||
|
||||
#LINKER_FLAGS specifies the libraries we're linking against
|
||||
LINKER_FLAGS = -lSDL2
|
||||
|
||||
#OBJ_NAME specifies the name of our executable
|
||||
OBJ_NAME= 04_keepress
|
||||
|
||||
#This is the target that compiles our executable
|
||||
all : $(OBJS)
|
||||
$(CC) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o $(OBJ_NAME)
|
||||
|
Reference in New Issue
Block a user