mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-04-28 06:59:40 +00:00
This commit improves the nDPI build system by standardizing cleanup targets, improving portability, and ensuring complete removal of generated files during `make distclean`. Changes: 1. Standardize clean targets (replace /bin/rm with portable $(RM)) 2. Add distclean-local targets for complete cleanup 3. Add missing clean/distclean targets 4. Remove obsolete commented-out curl detection code 5. fuzz/Makefile.am: Fix out-of-tree build compatibility by replacing hardcoded relative paths (../example/fuzz_*.o) with proper $(top_builddir) variables. Add distclean-local target.
16 lines
378 B
Makefile
16 lines
378 B
Makefile
TESTS = do.sh do-dga.sh
|
|
|
|
if BUILD_UNITTESTS
|
|
TESTS += do-unit.sh
|
|
endif
|
|
|
|
EXTRA_DIST = cfgs/*/pcap cfgs/*/result cfgs/*/*.txt performance \
|
|
unit/unit.c unit/Makefile.in \
|
|
dga/dga_evaluate.c dga/Makefile.in dga/README.md dga/test_dga.csv dga/test_non_dga.csv do-dga.sh.in \
|
|
do-unit.sh.in do.sh.in ossfuzz.sh
|
|
|
|
all:
|
|
@echo -n ""
|
|
|
|
distclean-local:
|
|
$(RM) do.sh do-dga.sh do-unit.sh
|