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