aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2019-02-04 15:33:35 -0500
committerPaul Duncan <pabs@pablotron.org>2019-02-04 15:33:35 -0500
commit159c42498365913f6ed400e13c77798d041a7d43 (patch)
tree96cc3b14bbbbd44dc5173e89b85cd2c8228e86e4 /Makefile
parentf4a38b43d43f9395d6042d234a5e0ada7455ace1 (diff)
downloadkmeans-159c42498365913f6ed400e13c77798d041a7d43.tar.bz2
kmeans-159c42498365913f6ed400e13c77798d041a7d43.zip
add rand-{path,erand48}, minor fixes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 99aebc9..0372ecf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,8 @@
APP=km-test
CFLAGS=-W -Wall -Wextra -Werror -pedantic -std=c11 -O2
OBJS=km-set.o km-draw.o km-load.o km-find.o km-rand.o km-solve.o \
- km-init-rand.o km-init-forgy.o km-init-kmeans.o km-init.o main.o
+ km-init-rand.o km-init-forgy.o km-init-kmeans.o km-init.o main.o \
+ km-rand-libc.o km-rand-path.o km-rand-erand48.o
LIBS=-lm
.PHONY=all clean