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