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