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