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