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