diff --git a/.gitignore b/.gitignore index 0ea1b78..8050c3a 100644 --- a/.gitignore +++ b/.gitignore @@ -37,7 +37,7 @@ *.x86_64 *.hex interpreter - +interpreter_debug # Debug files *.dSYM/ *.su @@ -55,4 +55,7 @@ dkms.conf #EIPA specific *.eipa +*.eipaimg +#Code editor +.vscode/* diff --git a/Makefile b/Makefile index 00d6e21..9ba5361 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,12 @@ all: compile compile: - gcc main.c -o interpreter + gcc main.c -o run: ./interpreter buildrun: compile - ./interpreter \ No newline at end of file + ./interpreter +compiledebug: + gcc main.c -g -o interpreter_debug \ No newline at end of file