Files
chip-8_emulator/Makefile

6 lines
84 B
Makefile
Raw Normal View History

2018-10-29 15:30:22 -04:00
OBJS = main.c
OBJ_NAME = chip8
all : $(OBJS)
gcc -g $(OBJS) -lSDL2 -o $(OBJ_NAME)