From 480bd9cf1c1111a9d5ae636c29df1f4a0f8d98ca Mon Sep 17 00:00:00 2001 From: Nathan Wagner Date: Sun, 17 Jun 2018 18:04:33 +0000 Subject: [PATCH] move astar to lib --- Makefile | 2 +- astar.c => lib/astar.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename astar.c => lib/astar.c (100%) diff --git a/Makefile b/Makefile index 2667188..a5e35a1 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ LDFLAGS= $(ARCH) -lm -L. CFLAGS= -Wall -Wno-parentheses $(ARCH) -I. -I.. -OBJS= lib/hexagon.o astar.o lib/cantor.o +OBJS= lib/hexagon.o lib/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/astar.c b/lib/astar.c similarity index 100% rename from astar.c rename to lib/astar.c -- 2.40.0