This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OBJS specifies which files to compile as part of the project | |
OBJS = main.cpp | |
# CC specifies which compiler we're using | |
CC = g++ | |
# INCLUDE_PATHS specifies the additional include paths we'll need | |
INCLUDE_PATHS = -I/usr/local/include -I/opt/X11/include | |
# LIBRARY_PATHS specifies the additional library paths we'll need |