diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 17:17:05 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-19 17:17:05 +0100 |
commit | 63dd156d873bb96eeaa19b78f9baccacf2f977fd (patch) | |
tree | a0dc1c223550e3b33fc2c90c6f555fce789bdfc7 /Makefile | |
parent | Feature: Implemented instructions to run the logo rom (diff) | |
download | CHIP8-Emulator-63dd156d873bb96eeaa19b78f9baccacf2f977fd.tar.gz CHIP8-Emulator-63dd156d873bb96eeaa19b78f9baccacf2f977fd.tar.bz2 CHIP8-Emulator-63dd156d873bb96eeaa19b78f9baccacf2f977fd.zip |
Misc: Added the dbgprintf() macro
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index d13a7ff..17f9717 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -CC=cc -CFLAGS=-g -Wall -I. +CC=egcc +CFLAGS=-std=c99 -g -Wall -I. all: chip8_emulator |