7 lines
74 B
Makefile
7 lines
74 B
Makefile
|
all: compile run
|
||
|
|
||
|
compile:
|
||
|
gcc main.c -o interpreter
|
||
|
|
||
|
run:
|
||
|
./interpreter
|