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