summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-03-21 09:43:52 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-03-21 09:43:52 -0700
commit85370261a9c374e22ab6beadcc7c53663372f03e (patch)
tree6999fc297feab228844a979a06b231fb64041c7a /Makefile
parente7d17c45b37c145eff23a8fc6e602346f9b65fe3 (diff)
downloadtxr-85370261a9c374e22ab6beadcc7c53663372f03e.tar.gz
txr-85370261a9c374e22ab6beadcc7c53663372f03e.tar.bz2
txr-85370261a9c374e22ab6beadcc7c53663372f03e.zip
* Makefile: link in -lm, which is needed now on some systems.
* arith.c (plus, minus): Eliminated some unnecessary (double) casts. (abso, mul): Floating support.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c8244ea4..4125484a 100644
--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,7 @@ OBJS += $(MPI_OBJS)
PROG := ./txr
$(PROG): $(OBJS) $(OBJS-y)
- $(CC) $(CFLAGS) -o $@ $^ $(LEXLIB)
+ $(CC) $(CFLAGS) -o $@ $^ -lm $(LEXLIB)
VPATH := $(top_srcdir)