1
0
Fork 0
advent-of-code/2017/day1/Makefile

9 lines
108 B
Makefile

all: day1.beam
erl -noshell -s day1 start -s init stop
day1.beam:
erlc day1.erl
clean:
rm -f day1.beam