Initial commit

This commit is contained in:
Daniel Cortes
2020-05-22 01:54:52 -04:00
commit 242e60ff40
42 changed files with 1557 additions and 0 deletions

11
rectangles/Makefile Executable file
View File

@@ -0,0 +1,11 @@
OBJS = main.cpp engine.h
CC = g++
COMPILER_FLAGS = -Wall
LINKER_FLAGS = -lSDL2 -lSDL2_image
OBJ_NAME = run
all: $(OBJS)
$(CC) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o $(OBJ_NAME)
clean:
rm *.o $(OBJ_NAME)