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