hanoi now requires -lm

This commit is contained in:
William McBrine
2019-01-18 22:57:33 -05:00
parent 5abce67c1a
commit 94e01fe604

View File

@@ -540,7 +540,7 @@ gdc: gdc.o $(LIBCURSES)
$(LINK) gdc.o -o $@ $(LDFLAGS)
hanoi: hanoi.o $(LIBCURSES)
$(LINK) hanoi.o -o $@ $(LDFLAGS)
$(LINK) hanoi.o -o $@ $(LDFLAGS) -lm
knight: knight.o $(LIBCURSES)
$(LINK) knight.o -o $@ $(LDFLAGS)