Merge pull request #167 from SethBarberee/gen_fx_fix
Some checks failed
build / build (push) Has been cancelled

fix: add -lm to gen_fx_consts Makefile
This commit is contained in:
AnonymousRandomPerson
2025-08-19 18:48:13 -04:00
committed by GitHub

View File

@@ -17,7 +17,7 @@ all: $(prog)
clean: ; $(RM) -r $(DEPDIR) $(OBJS) $(prog) $(prog).exe
$(prog): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $^
$(CC) $(LDFLAGS) -lm -o $@ $^
$(OBJS): %.o: %.c
$(OBJS): %.o: %.c $(DEPDIR)/%.d | $(DEPDIR)