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