forked from CAPS-Robotics/Debug_Station_Linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile~
More file actions
19 lines (14 loc) · 711 Bytes
/
Makefile~
File metadata and controls
19 lines (14 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#OBJS specifies which files to compile as part of the project
OBJS = source/main.cpp source/display.cpp source/parser.cpp source/Socket.cpp source/keys.cpp source/
#CC specifies which compiler we're using
CC = g++
#COMPILER_FLAGS specifies the additional compilation options we're using
# -w suppresses all warnings
COMPILER_FLAGS = -w
#LINKER_FLAGS specifies the libraries we're linking against
LINKER_FLAGS = -lGLU -lGL -lglut -lILU -lILUT -lIL
#OBJ_NAME specifies the name of our exectuable
OBJ_NAME = Debug_Station_Linux
#This is the target that compiles our executable
all : $(OBJS)
$(CC) $(OBJS) $(INCLUDE_PATHS) $(LIBRARY_PATHS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o $(OBJ_NAME)