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