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