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