diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 17:30:55 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 17:30:55 +0100 |
commit | e60c3c684f87f32ba0500892ff85215faaaad0d5 (patch) | |
tree | 7707021822ebdf348d0dc6468d216ed33d207bff /Makefile | |
parent | Misc: Added the dbgprintf() macro (diff) | |
download | CHIP8-Emulator-e60c3c684f87f32ba0500892ff85215faaaad0d5.tar.gz CHIP8-Emulator-e60c3c684f87f32ba0500892ff85215faaaad0d5.tar.bz2 CHIP8-Emulator-e60c3c684f87f32ba0500892ff85215faaaad0d5.zip |
Feature: Added timers thread
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 17f9717..2b88fe9 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=egcc -CFLAGS=-std=c99 -g -Wall -I. +CFLAGS=-std=c99 -g -Wall -I. -lpthread all: chip8_emulator |