From d74b76176b43b9eae3b584c231b077d3a3f0f92b Mon Sep 17 00:00:00 2001 From: Nathan Wagner Date: Sun, 17 Jun 2018 17:43:16 +0000 Subject: [PATCH] move library source into lib --- Makefile | 2 +- hexagon.c => lib/hexagon.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename hexagon.c => lib/hexagon.c (100%) diff --git a/Makefile b/Makefile index 05a253e..2667188 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ LDFLAGS= $(ARCH) -lm -L. CFLAGS= -Wall -Wno-parentheses $(ARCH) -I. -I.. -OBJS= hexagon.o astar.o lib/cantor.o +OBJS= lib/hexagon.o astar.o lib/cantor.o SRC=$(OBJS:.o=.c) TESTS= t/cantor.t t/distance.t t/adjacency.t t/range.t t/hexbin.t \ t/gridsize.t t/center.t t/polar.t diff --git a/hexagon.c b/lib/hexagon.c similarity index 100% rename from hexagon.c rename to lib/hexagon.c -- 2.40.0