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