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