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