]> git.sur5r.net Git - cc65/commitdiff
Most hosts require the math library to be linked explicitly.
authorOliver Schmidt <ol.sc@web.de>
Mon, 29 Apr 2013 14:03:14 +0000 (17:03 +0300)
committerOliver Schmidt <ol.sc@web.de>
Mon, 29 Apr 2013 14:03:14 +0000 (17:03 +0300)
src/Makefile

index b97291f3b94d410ea479ced42df4aadcbd5f29a5..ead1387e8cb50895c715fae6f9b423f6cace1cb6 100644 (file)
@@ -20,6 +20,8 @@ CFLAGS += -MMD -MP -O -std=c89 -I common \
           -DCA65_INC=$(CA65_INC) -DCC65_INC=$(CC65_INC) \
           -DLD65_LIB=$(LD65_LIB) -DLD65_OBJ=$(LD65_OBJ) -DLD65_CFG=$(LD65_CFG)
 
+LDLIBS += -lm
+
 all: $(PROGS)
 
 mostlyclean:
@@ -74,7 +76,7 @@ define PROG_template
 $$(eval $$(call OBJS_template,$(1)))
 
 ../bin/$(1): $$($(1)_OBJS) ../wrk/common/common.a | ../bin
-       $$(CC) $$(LDFLAGS) -o $$@ $$^
+       $$(CC) $$(LDFLAGS) $$(LDLIBS) -o $$@ $$^
 
 $(1): ../bin/$(1)