Add build+run command to makefile

This commit is contained in:
XOR 2022-12-24 01:01:12 +01:00
parent da1c3e66ef
commit 91ee058d9d

View file

@ -1,7 +1,10 @@
all: compile run
all: compile
compile:
gcc main.c -o interpreter
run:
./interpreter
buildrun: compile
./interpreter