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