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