Skip to content
Snippets Groups Projects

added feature to guess the compression configuration

Merged Dominik Loidolt requested to merge guess_good_cmp_pars into master
2 files
+ 247
12
Compare changes
  • Side-by-side
  • Inline

Files

+ 3
4
@@ -3,11 +3,11 @@ SOURCEDIR =
INCLUDES = -I../../include
PATH +=
CFLAGS := -O0 -W -Wall -Wextra -std=gnu99 -Werror -pedantic -g3\
-fprofile-arcs -ftest-coverage\
-fanalyzer
-fprofile-arcs -ftest-coverage
CPPFLAGS := -D__MAIN__ $(INCLUDES) -I$(SOURCEDIR)
LDFLAGS := -lcunit
SOURCES := $(wildcard *.c) ../../lib/cmp_tool_lib.c ../../lib/cmp_support.c
SOURCES := $(wildcard *.c) ../../lib/cmp_tool_lib.c ../../lib/cmp_guess.c\
../../lib/cmp_support.c ../../lib/cmp_icu.c ../../lib/cmp_data_types.c
OBJECTS := $(patsubst %.c, $(BUILDDIR)/%.o, $(subst $(SOURCEDIR)/,, $(SOURCES)))
TARGET := test_cmp_tool
@@ -21,6 +21,5 @@ coverage: all
genhtml --rc lcov_branch_coverage=1 --branch-coverage coverage.info --output-directory out
#firefox out/index.html
clean:
rm -r $(TARGET) *.gcno *.gcda coverage.info out/ tmp_stderr.log
Loading