Assembler/Makefile
XOR 60c0e47668 Added debug task to makefile
Adjusted gitignore
2022-12-29 01:35:19 +01:00

12 lines
No EOL
142 B
Makefile

all: compile
compile:
gcc main.c -o
run:
./interpreter
buildrun: compile
./interpreter
compiledebug:
gcc main.c -g -o interpreter_debug