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