9 lines
64 B
Makefile
9 lines
64 B
Makefile
all:
|
|
gcc -o typoml src/*
|
|
|
|
run:
|
|
./typoml
|
|
|
|
clean:
|
|
rm -f typoml
|