Is anyone opposed to removing some unneeded sources from the makefile? The files will still be present on-disk - they will just be removed from the makefile's recipes.
Are there other files that can be removed? ********** $ git diff GNUmakefile diff --git a/GNUmakefile b/GNUmakefile index 3defa68..885a0e1 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -139,6 +139,9 @@ ifeq ($(SRCS),) # workaround wil SRCS = $(shell echo *.cpp) endif +UNNEEDED = cryptlib_bds.cpp dlltest.cpp pch.cpp winpipes.cpp +SRCS := $(filter-out $(UNNEEDED),$(SRCS)) + OBJS = $(SRCS:.cpp=.o) # test.o needs to be after bench.o for cygwin 1.1.4 (possible ld bug?) TESTOBJS = bench.o bench2.o test.o validat1.o validat2.o validat3.o adhoc.o dat -- -- You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to [email protected]. More information about Crypto++ and this group is available at http://www.cryptopp.com. --- You received this message because you are subscribed to the Google Groups "Crypto++ Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
