From 94ccbeebf69d856effb7ba0dc2dd7e4b13ba3a06 Mon Sep 17 00:00:00 2001 From: Jan Breuer <jan.breuer@jaybee.cz> Date: ćšć, 03 10æ 2013 21:51:46 +0800 Subject: [PATCH] Add support for Boolean program data --- libscpi/Makefile | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/libscpi/Makefile b/libscpi/Makefile index baa4567..75caea6 100644 --- a/libscpi/Makefile +++ b/libscpi/Makefile @@ -23,6 +23,7 @@ SRCS = $(addprefix src/, \ debug.c error.c fifo.c ieee488.c \ minimal.c parser.c units.c utils.c \ + lexer.c \ ) OBJS = $(addprefix $(OBJDIR)/, $(notdir $(SRCS:.c=.o))) @@ -30,12 +31,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 \ + types.h units.h lexer.h \ ) src/utils.h TESTS = $(addprefix test/, \ - test_fifo.c test_scpi_utils.c \ + test_fifo.c test_scpi_utils.c test_lexer_parser.c\ ) TESTS_OBJS = $(TESTS:.c=.o) @@ -62,6 +63,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 +75,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