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