This commit is contained in:
2018-10-29 15:30:22 -04:00
parent f53e6a115d
commit 8795f83f75
2 changed files with 407 additions and 0 deletions

5
Makefile Normal file
View File

@@ -0,0 +1,5 @@
OBJS = main.c
OBJ_NAME = chip8
all : $(OBJS)
gcc -g $(OBJS) -lSDL2 -o $(OBJ_NAME)