From cbdf27b81c8e0fc46dc2c7b5596cc1616a575d34 Mon Sep 17 00:00:00 2001 From: Jan Breuer <jan.breuer@jaybee.cz> Date: ćšć, 13 2æ 2014 03:29:02 +0800 Subject: [PATCH] Rename src/utils.h -> inc/scpi/utils_private.h --- libscpi/Makefile | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libscpi/Makefile b/libscpi/Makefile index baa4567..c256198 100644 --- a/libscpi/Makefile +++ b/libscpi/Makefile @@ -30,12 +30,12 @@ HDRS = $(addprefix inc/scpi/, \ scpi.h constants.h debug.h error.h \ fifo.h ieee488.h minimal.h parser.h \ - types.h units.h \ - ) src/utils.h + types.h units.h utils_private.h \ + ) TESTS = $(addprefix test/, \ - test_fifo.c test_scpi_utils.c \ + test_fifo.c test_scpi_utils.c test_lib.c \ ) TESTS_OBJS = $(TESTS:.c=.o) @@ -62,6 +62,7 @@ $(CC) $(SHAREDLIBFLAGS),$(SHAREDLIB) -o $(DISTDIR)/$(SHAREDLIBVER) $(OBJS) $(DISTDIR)/$(SHAREDLIB): $(DISTDIR)/$(SHAREDLIBVER) + $(RM) $(DISTDIR)/$(SHAREDLIB) ln -s $(SHAREDLIBVER) $(DISTDIR)/$(SHAREDLIB) static: $(DISTDIR)/$(STATICLIB) @@ -73,7 +74,6 @@ clean: $(RM) -r $(OBJDIR) $(DISTDIR) $(TESTS_BINS) $(TESTS_OBJS) - test: static $(TESTS_BINS) for t in $(TESTS_BINS); do ./$$t; done -- Gitblit v1.9.1