diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 18:26:09 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 18:26:09 +0100 |
commit | 34858842acf9a86a32003f7ed256192064a994ed (patch) | |
tree | 92e7a5521dd20027477f7420eb3e079580117f0d /Makefile | |
parent | Feature: Added timers thread (diff) | |
download | CHIP8-Emulator-34858842acf9a86a32003f7ed256192064a994ed.tar.gz CHIP8-Emulator-34858842acf9a86a32003f7ed256192064a994ed.tar.bz2 CHIP8-Emulator-34858842acf9a86a32003f7ed256192064a994ed.zip |
Feature: Prepared SDL window for pixel drawing instruction
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 2b88fe9..2bc39b7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=egcc -CFLAGS=-std=c99 -g -Wall -I. -lpthread +CFLAGS=-std=c99 -g -Wall -I. -lpthread -lSDL2 all: chip8_emulator |