Added debug task to makefile

Adjusted gitignore
This commit is contained in:
XOR 2022-12-29 01:35:19 +01:00
parent 6a9afe4a98
commit 60c0e47668
2 changed files with 8 additions and 3 deletions

View file

@ -1,10 +1,12 @@
all: compile
compile:
gcc main.c -o interpreter
gcc main.c -o
run:
./interpreter
buildrun: compile
./interpreter
./interpreter
compiledebug:
gcc main.c -g -o interpreter_debug