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