aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-03-13 01:04:48 +0100
committerMattias Andrée <maandree@kth.se>2016-03-13 01:05:00 +0100
commit58baaf9eaa1a0519766b9f5aabb510e1e6969d6c (patch)
treed0ee04f49deebd2f4940e24dafa1b7d77e273aeb /Makefile
parentAdd possibility to compare against libgmp (diff)
downloadlibzahl-58baaf9eaa1a0519766b9f5aabb510e1e6969d6c.tar.gz
libzahl-58baaf9eaa1a0519766b9f5aabb510e1e6969d6c.tar.bz2
libzahl-58baaf9eaa1a0519766b9f5aabb510e1e6969d6c.tar.xz
Make zabs, zneg and zswap inline
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 90351d9..c7c5822 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,6 @@ HDR =\
src/internals.h
FUN =\
- zabs\
zadd\
zand\
zbits\
@@ -29,7 +28,6 @@ FUN =\
zmodpowu\
zmodsqr\
zmul\
- zneg\
znot\
zor\
zperror\
@@ -49,19 +47,21 @@ FUN =\
zstr\
zstr_length\
zsub\
- zswap\
ztrunc\
zunsetup\
zxor
INLINE_FUN =\
zinit\
+ zswap\
zeven\
zodd\
zeven_nonzero\
zodd_nonzero\
zzero\
- zsignum
+ zsignum\
+ zabs\
+ zneg
OBJ = $(FUN:=.o) allocator.o
MAN3 = $(FUN:=.3) $(INLINE_FUN:=.3)