From 8de854cae640473fbd9c8f80b0e9bf479588dcf0 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 1 Nov 2016 05:07:57 -0400 Subject: [PATCH] Add adhoc.cpp to test sources (Issue 332) --- GNUmakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index d846d6b5..92676802 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -441,7 +441,7 @@ endif OBJS := $(SRCS:.cpp=.o) # List test.cpp first to tame C++ static initialization problems. -TESTSRCS := test.cpp bench1.cpp bench2.cpp validat1.cpp validat2.cpp validat3.cpp adhoc.cpp datatest.cpp regtest.cpp fipsalgt.cpp dlltest.cpp +TESTSRCS := adhoc.cpp test.cpp bench1.cpp bench2.cpp validat1.cpp validat2.cpp validat3.cpp datatest.cpp regtest.cpp fipsalgt.cpp dlltest.cpp TESTOBJS := $(TESTSRCS:.cpp=.o) LIBOBJS := $(filter-out $(TESTOBJS),$(OBJS)) @@ -499,8 +499,8 @@ test check: cryptest.exe # Used to generate list of source files for Autotools, CMakeList, Android.mk, etc .PHONY: sources -sources: - $(info Library sources: $(filter-out fipstest.cpp $(TESTSRCS),$(SRCS))) +sources: adhoc.cpp + $(info Library sources: $(filter-out $(TESTSRCS),$(SRCS))) $(info ) $(info Test sources: $(TESTSRCS))