First upload

This commit is contained in:
Daniel Cortés
2019-04-16 11:39:56 -04:00
commit 08b500f502
2 changed files with 219 additions and 0 deletions

11
Makefile Normal file
View File

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