8 lines
113 B
Makefile
8 lines
113 B
Makefile
all: day11.beam
|
|
erl -noshell -s day11 start -s init stop
|
|
|
|
day11.beam:
|
|
erlc day11.erl
|
|
|
|
clean:
|
|
rm -f day11.beam
|