forked from jogordo/DnD_Archive
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
176 B
7 lines
176 B
CC = clang++
|
|
FLAGS = -lSDL2 -lSDL2_image -lSDL2_gfx -lopencv_core -lopencv_highgui -lopencv_imgcodecs
|
|
EXEC = action
|
|
SRC = *.cpp
|
|
|
|
all: $(SRC)
|
|
$(CC) $(FLAGS) -o $(EXEC) $(SRC)
|