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