Add adhoc.cpp to test sources (Issue 332)

pull/339/head
Jeffrey Walton 2016-11-01 05:07:57 -04:00
parent 856c7c56ad
commit 8de854cae6
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 3 additions and 3 deletions

View File

@ -441,7 +441,7 @@ endif
OBJS := $(SRCS:.cpp=.o) OBJS := $(SRCS:.cpp=.o)
# List test.cpp first to tame C++ static initialization problems. # 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) TESTOBJS := $(TESTSRCS:.cpp=.o)
LIBOBJS := $(filter-out $(TESTOBJS),$(OBJS)) 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 # Used to generate list of source files for Autotools, CMakeList, Android.mk, etc
.PHONY: sources .PHONY: sources
sources: sources: adhoc.cpp
$(info Library sources: $(filter-out fipstest.cpp $(TESTSRCS),$(SRCS))) $(info Library sources: $(filter-out $(TESTSRCS),$(SRCS)))
$(info ) $(info )
$(info Test sources: $(TESTSRCS)) $(info Test sources: $(TESTSRCS))