-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathMakefile.am
More file actions
610 lines (544 loc) · 19.5 KB
/
Makefile.am
File metadata and controls
610 lines (544 loc) · 19.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = lib
DISTCLEANFILES = src/stamp-h[0-9]* src/config.h
bin_PROGRAMS = src/interdiff src/filterdiff src/rediff
# Scanner-based unified patchfilter tool (experimental)
if USE_SCANNER_PATCHFILTER
bin_PROGRAMS += src/patchfilter
endif
# Development/debug utilities (not installed by default)
noinst_PROGRAMS = src/scanner_debug
# Scanner test programs (only when scanner-patchfilter is enabled)
if USE_SCANNER_PATCHFILTER
noinst_PROGRAMS += tests/scanner/test_basic tests/scanner/test_accumulated_headers tests/scanner/test_input_validation
endif
bin_SCRIPTS = \
scripts/fixcvsdiff \
scripts/splitdiff \
scripts/editdiff \
scripts/recountdiff \
scripts/unwrapdiff \
scripts/dehtmldiff \
scripts/move-to-front \
scripts/espdiff
dist_bin_SCRIPTS = \
patchview/patchview-wrapper #$(EXEEXT)
# Bash completion files
bashcompletiondir = $(datadir)/bash-completion/completions
dist_bashcompletion_DATA = bash-completion-patchutils
AM_CFLAGS = -I$(srcdir)/src -I$(top_builddir)/lib -I$(top_srcdir)/lib
src_interdiff_SOURCES = src/interdiff.c src/util.c src/util.h src/diff.c \
src/diff.h
src_filterdiff_SOURCES = src/filterdiff.c src/util.c src/util.h src/diff.c \
src/diff.h
src_rediff_SOURCES = src/rediff.c src/util.c src/util.h src/diff.c src/diff.h
# Note: lsdiff functionality is now provided by:
# - symlink to filterdiff (traditional)
# - patchfilter in list mode (scanner-based)
if USE_SCANNER_PATCHFILTER
src_patchfilter_SOURCES = src/patchfilter.c src/patchfilter.h \
src/ls.c src/grep.c src/filter.c \
src/patch_scanner.c src/patch_scanner.h \
src/patch_common.c src/patch_common.h \
src/util.c src/util.h src/diff.c src/diff.h
# Scanner test program sources
tests_scanner_test_basic_SOURCES = tests/scanner/test_basic.c \
src/patch_scanner.c src/patch_scanner.h \
src/util.c src/util.h src/diff.c src/diff.h
tests_scanner_test_accumulated_headers_SOURCES = tests/scanner/test_accumulated_headers.c \
src/patch_scanner.c src/patch_scanner.h \
src/util.c src/util.h src/diff.c src/diff.h
tests_scanner_test_input_validation_SOURCES = tests/scanner/test_input_validation.c \
src/patch_scanner.c src/patch_scanner.h \
src/util.c src/util.h src/diff.c src/diff.h
endif
src_interdiff_LDADD = lib/libgnu.a @LIBOBJS@
src_filterdiff_LDADD = lib/libgnu.a @LIBOBJS@
src_rediff_LDADD = lib/libgnu.a @LIBOBJS@
if USE_SCANNER_PATCHFILTER
src_patchfilter_LDADD = lib/libgnu.a @LIBOBJS@
# Scanner test program dependencies
tests_scanner_test_basic_LDADD = lib/libgnu.a @LIBOBJS@
tests_scanner_test_accumulated_headers_LDADD = lib/libgnu.a @LIBOBJS@
tests_scanner_test_input_validation_LDADD = lib/libgnu.a @LIBOBJS@
endif
# Scanner debug utility
src_scanner_debug_SOURCES = src/scanner_debug.c src/patch_scanner.c src/patch_scanner.h \
src/util.c src/util.h src/diff.c src/diff.h
src_scanner_debug_LDADD = lib/libgnu.a @LIBOBJS@
if HAVE_XMLTO
# The man pages are generated from DocBook XML.
interdiff_manpage = doc/interdiff.1
other_manpages = doc/filterdiff.1 doc/fixcvsdiff.1 doc/rediff.1 \
doc/editdiff.1 doc/combinediff.1 doc/lsdiff.1 doc/splitdiff.1 \
doc/grepdiff.1 doc/recountdiff.1 doc/unwrapdiff.1 doc/dehtmldiff.1 \
doc/flipdiff.1 doc/espdiff.1 doc/patchview.1 \
doc/gitdiff.1 doc/gitdiffview.1 doc/gitshow.1 doc/gitshowview.1 \
doc/svndiff.1 doc/svndiffview.1
man_MANS = $(interdiff_manpage) $(other_manpages)
$(other_manpages): $(interdiff_manpage)
$(interdiff_manpage): doc/patchutils.xml
$(XMLTO) man -o doc $<
else
man_MANS =
endif
# Special rules for combinediff, flipdiff, lsdiff, grepdiff and patchview, which are
# just symlinks.
interdiff_links = \
src/combinediff$(EXEEXT) \
src/flipdiff$(EXEEXT)
filterdiff_links = \
src/patchview$(EXEEXT)
if !USE_SCANNER_PATCHFILTER
filterdiff_links += src/lsdiff$(EXEEXT) \
src/grepdiff$(EXEEXT)
endif
# lsdiff and grepdiff symlink targets vary based on USE_SCANNER_PATCHFILTER
if !USE_SCANNER_PATCHFILTER
src/lsdiff$(EXEEXT): src/filterdiff$(EXEEXT)
ln -sf $(notdir $<) $@
src/grepdiff$(EXEEXT): src/filterdiff$(EXEEXT)
ln -sf $(notdir $<) $@
else
# When patchfilter is enabled, create lsdiff and grepdiff symlinks to patchfilter
src/lsdiff$(EXEEXT): src/patchfilter$(EXEEXT)
ln -sf $(notdir $<) $@
src/grepdiff$(EXEEXT): src/patchfilter$(EXEEXT)
ln -sf $(notdir $<) $@
endif
patchview_links = \
patchview/gitdiff$(EXEEXT) \
patchview/gitdiffview$(EXEEXT) \
patchview/gitshow$(EXEEXT) \
patchview/gitshowview$(EXEEXT) \
patchview/svndiff$(EXEEXT) \
patchview/svndiffview$(EXEEXT)
$(interdiff_links): src/interdiff$(EXEEXT)
ln -sf $(notdir $<) $@
$(filterdiff_links): src/filterdiff$(EXEEXT)
ln -sf $(notdir $<) $@
$(patchview_links): patchview/patchview-wrapper #$(EXEEXT)
ln -sf $(notdir $<) $@
# Ensure all symlinks are created during build
all-local: $(interdiff_links) $(filterdiff_links) src/lsdiff$(EXEEXT) src/grepdiff$(EXEEXT)
@test -d patchview || mkdir -p patchview
@$(MAKE) $(AM_MAKEFLAGS) $(patchview_links)
install-exec-hook:
@for f in $(interdiff_links); do \
ln -sf "`echo interdiff$(EXEEXT) | sed '$(transform)'`" \
"$(DESTDIR)$(bindir)/`basename $$f | sed '$(transform)'`"; \
done
@for f in $(filterdiff_links); do \
ln -sf "`echo filterdiff$(EXEEXT) | sed '$(transform)'`" \
"$(DESTDIR)$(bindir)/`basename $$f | sed '$(transform)'`"; \
done
if USE_SCANNER_PATCHFILTER
ln -sf "`echo patchfilter|sed '$(transform)'`" $(DESTDIR)$(bindir)/"`echo lsdiff|sed '$(transform)'`"
ln -sf "`echo patchfilter|sed '$(transform)'`" $(DESTDIR)$(bindir)/"`echo grepdiff|sed '$(transform)'`"
endif
@for f in $(patchview_links); do \
ln -sf "`echo patchview-wrapper | sed '$(transform)'`" \
"$(DESTDIR)$(bindir)/`basename $$f | sed '$(transform)'`"; \
done
install-data-hook:
if [ -d "$(DESTDIR)$(bashcompletiondir)" ]; then \
cd "$(DESTDIR)$(bashcompletiondir)" && \
mv bash-completion-patchutils interdiff && \
for cmd in filterdiff lsdiff grepdiff combinediff flipdiff rediff \
splitdiff recountdiff unwrapdiff dehtmldiff editdiff espdiff \
fixcvsdiff patchview gitdiff svndiff gitdiffview svndiffview; do \
ln -sf interdiff "$$cmd" || true; \
done; \
fi
uninstall-local:
@for f in $(interdiff_links); do \
rm -f "$(DESTDIR)$(bindir)/`basename $$f | sed '$(transform)'`"; \
done
@for f in $(filterdiff_links); do \
rm -f "$(DESTDIR)$(bindir)/`basename $$f | sed '$(transform)'`"; \
done
if USE_SCANNER_PATCHFILTER
rm -f $(DESTDIR)$(bindir)/"`echo lsdiff|sed '$(transform)'`"
rm -f $(DESTDIR)$(bindir)/"`echo grepdiff|sed '$(transform)'`"
endif
@for f in $(patchview_links); do \
rm -f "$(DESTDIR)$(bindir)/`basename $$f | sed '$(transform)'`"; \
done
if [ -d "$(DESTDIR)$(bashcompletiondir)" ]; then \
cd "$(DESTDIR)$(bashcompletiondir)" && \
for cmd in filterdiff lsdiff grepdiff interdiff combinediff flipdiff rediff \
splitdiff recountdiff unwrapdiff dehtmldiff editdiff espdiff \
fixcvsdiff patchview gitdiff svndiff gitdiffview svndiffview; do \
rm -f "$$cmd"; \
done; \
rm -f patchutils; \
fi
patchfilter_links =
if USE_SCANNER_PATCHFILTER
patchfilter_links += src/lsdiff$(EXEEXT) src/grepdiff$(EXEEXT)
endif
CLEANFILES = $(interdiff_links) $(filterdiff_links) $(patchview_links) $(patchfilter_links)
MAINTAINERCLEANFILES=$(man_MANS)
# Regression tests.
TESTS_ENVIRONMENT = top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
ARENA=$(top_builddir)/test-arena \
DIFF=$(DIFF) PATCH=$(PATCH)
TESTS = tests/newline1/run-test \
tests/newline2/run-test \
tests/newline3/run-test \
tests/newline4/run-test \
tests/newline5/run-test \
tests/newline6/run-test \
tests/create1/run-test \
tests/broken1/run-test \
tests/revert1/run-test \
tests/revert2/run-test \
tests/dashes/run-test \
tests/dashes1/run-test \
tests/dashes2/run-test \
tests/dashes3/run-test \
tests/dashes4/run-test \
tests/linux-2.4.0-test-pre-style/run-test \
tests/linux-2.2.17-pre4-5/run-test \
tests/linux-2.4.13-ac6-7/run-test \
tests/apply1/run-test \
tests/copy1/run-test \
tests/edit1/run-test \
tests/edit2/run-test \
tests/edit3/run-test \
tests/edit4/run-test \
tests/edit5/run-test \
tests/edit6/run-test \
tests/edit7/run-test \
tests/edit8/run-test \
tests/edit9/run-test \
tests/edit10/run-test \
tests/combine1/run-test \
tests/combine2/run-test \
tests/combine3/run-test \
tests/combine4/run-test \
tests/combine5/run-test \
tests/combine6/run-test \
tests/combine-devnull/run-test \
tests/combine-devnull-p/run-test \
tests/combine-no-match/run-test \
tests/interdiff-devnull/run-test \
tests/interdiff-reverse-issue18/run-test \
tests/flipdiff-devnull/run-test \
tests/gendiff1/run-test \
tests/gendiff2/run-test \
tests/comma/run-test \
tests/addhunk1/run-test \
tests/addhunk2/run-test \
tests/addhunk3/run-test \
tests/delhunk1/run-test \
tests/delhunk2/run-test \
tests/delhunk3/run-test \
tests/delhunk4/run-test \
tests/delhunk5/run-test \
tests/delhunk6/run-test \
tests/trimcontext1/run-test \
tests/trimlast1/run-test \
tests/trimlast2/run-test \
tests/nodate/run-test \
tests/lsdiff1/run-test \
tests/lsdiff2/run-test \
tests/lsdiff3/run-test \
tests/lsdiff4/run-test \
tests/lsdiff5/run-test \
tests/lsdiff6/run-test \
tests/lsdiff7/run-test \
tests/lsdiff8/run-test \
tests/lsdiff9/run-test \
tests/lsdiff10/run-test \
tests/lsdiff11/run-test \
tests/lsdiff12/run-test \
tests/lsdiff13/run-test \
tests/lsdiff14/run-test \
tests/lsdiff15/run-test \
tests/lsdiff-number-files/run-test \
tests/lsdiff-files-range/run-test \
tests/lsdiff-empty-files-removed/run-test \
tests/lsdiff-addprefix/run-test \
tests/lsdiff-strip-match/run-test \
tests/lsdiff-hunks-option/run-test \
tests/lsdiff-lines-option/run-test \
tests/lsdiff-exclusion-combined/run-test \
tests/lsdiff-combination-filters/run-test \
tests/lsdiff-exclusion-mode/run-test \
tests/lsdiff-verbose-levels/run-test \
tests/lsdiff-range-exclude/run-test \
tests/lsdiff-error-handling/run-test \
tests/lsdiff-include-exclude-file/run-test \
tests/lsdiff-path-prefixes/run-test \
tests/lsdiff-decompression/run-test \
tests/lsdiff-context-diff-empty-files/run-test \
tests/lsdiff-patch-scanner-errors/run-test \
tests/lsdiff-strip-vs-match-warning/run-test \
tests/lsdiff-binary-numbering/run-test \
tests/patchview1/run-test \
tests/patchview2/run-test \
tests/fuzz1/run-test \
tests/U0/run-test \
tests/U3/run-test \
tests/U5/run-test \
tests/grepdiff1/run-test \
tests/grepdiff2/run-test \
tests/grepdiff3/run-test \
tests/grepdiff4/run-test \
tests/grepdiff5/run-test \
tests/grepdiff6/run-test \
tests/grepdiff7/run-test \
tests/grepdiff8/run-test \
tests/grepdiff9/run-test \
tests/grepdiff-original-line-numbers/run-test \
tests/grepdiff-number-files/run-test \
tests/grepdiff-status/run-test \
tests/grepdiff-include-exclude/run-test \
tests/grepdiff-file-regex/run-test \
tests/grepdiff-annotate/run-test \
tests/grepdiff-with-filename/run-test \
tests/number1/run-test \
tests/number2/run-test \
tests/number3/run-test \
tests/nondiff/run-test \
tests/nondiff1/run-test \
tests/lscontext1/run-test \
tests/lscontext2/run-test \
tests/lscontext3/run-test \
tests/filterb/run-test \
tests/filterp/run-test \
tests/strip-vs-match/run-test \
tests/select1/run-test \
tests/select2/run-test \
tests/select3/run-test \
tests/select4/run-test \
tests/select5/run-test \
tests/select6/run-test \
tests/select7/run-test \
tests/select8/run-test \
tests/select9/run-test \
tests/select10/run-test \
tests/select11/run-test \
tests/preserve1/run-test \
tests/rediff1/run-test \
tests/rediff2/run-test \
tests/rediff3/run-test \
tests/rediff4/run-test \
tests/recount1/run-test \
tests/recount2/run-test \
tests/recount3/run-test \
tests/recount4/run-test \
tests/recount5/run-test \
tests/recount6/run-test \
tests/recount7/run-test \
tests/recount8/run-test \
tests/unwrapdiff1/run-test \
tests/overstrip/run-test \
tests/context1/run-test \
tests/flip1/run-test \
tests/flip2/run-test \
tests/flip3/run-test \
tests/flip4/run-test \
tests/flip5/run-test \
tests/flip6/run-test \
tests/flip7/run-test \
tests/flip8/run-test \
tests/flip9/run-test \
tests/flip10/run-test \
tests/flip11/run-test \
tests/flip12/run-test \
tests/flip13/run-test \
tests/flip14/run-test \
tests/flip15/run-test \
tests/flip16/run-test \
tests/flip17/run-test \
tests/flip18/run-test \
tests/flip19/run-test \
tests/unline1/run-test \
tests/nul0/run-test \
tests/nul1/run-test \
tests/nul2/run-test \
tests/nul3/run-test \
tests/convert1/run-test \
tests/convert2/run-test \
tests/clean1/run-test \
tests/clean2/run-test \
tests/stdin/run-test \
tests/splitdiffD/run-test \
tests/fullheader1/run-test \
tests/fullheader2/run-test \
tests/fullheader3/run-test \
tests/fullheader4/run-test \
tests/whitespace/run-test \
tests/crlf/run-test \
tests/whitespace-regression/run-test \
tests/interdiff-whitespace-w/run-test \
tests/interdiff-color-context/run-test \
tests/interdiff-patch2-headers/run-test \
tests/interdiff-mode-only/run-test \
tests/patch-ignore-whitespace/run-test \
tests/whitespace-w/run-test \
tests/filterdiff-inplace1/run-test \
tests/filterdiff-binary-filtering/run-test \
tests/rediff-inplace1/run-test \
tests/rediff-empty-hunk/run-test \
tests/git-rename-issue22/run-test \
tests/git-binary-issue57/run-test \
tests/git-binary-formats/run-test \
tests/git-extended-diffs/run-test \
tests/git-mode-issue59/run-test \
tests/git-exclude-issue27/run-test \
tests/git-prefixes-option/run-test \
tests/git-prefixes-with-strip/run-test \
tests/git-diff-duplication/run-test \
tests/git-complex-mixed/run-test \
tests/git-error-handling/run-test \
tests/git-copy-operations/run-test \
tests/git-extended-headers/run-test \
tests/git-lsdiff-status/run-test \
tests/git-deleted-file/run-test \
tests/git-pure-rename/run-test \
tests/git-diff-edge-cases/run-test \
tests/malformed-diff-headers/run-test
# Scanner tests (only when scanner-patchfilter is enabled)
if USE_SCANNER_PATCHFILTER
TESTS += \
tests/scanner/run-test \
tests/scanner-debug/run-test \
tests/scanner-debug/test-output-validation
endif
# These ones don't work yet.
# Feel free to send me patches. :-)
XFAIL_TESTS = \
tests/delhunk5/run-test \
tests/delhunk6/run-test \
tests/rediff-empty-hunk/run-test
# lsdiff advanced tests: expected to fail unless scanner-patchfilter is enabled
if !USE_SCANNER_PATCHFILTER
XFAIL_TESTS += \
tests/lsdiff-lines-option/run-test \
tests/lsdiff-hunks-option/run-test \
tests/lsdiff-exclusion-combined/run-test \
tests/lsdiff-combination-filters/run-test \
tests/lsdiff-exclusion-mode/run-test
endif
# grepdiff tests: expected to fail when scanner-patchfilter is enabled
# (features not yet implemented in scanner-based grepdiff)
if USE_SCANNER_PATCHFILTER
XFAIL_TESTS += \
tests/grepdiff-annotate/run-test
endif
# lsdiff tests: expected to fail when scanner-patchfilter is enabled
# (features not yet implemented in scanner-based lsdiff)
if USE_SCANNER_PATCHFILTER
XFAIL_TESTS += \
tests/lsdiff-strip-match/run-test
endif
test-perms: src/combinediff$(EXEEXT) src/flipdiff$(EXEEXT) \
src/lsdiff$(EXEEXT) src/grepdiff$(EXEEXT) src/patchview$(EXEEXT) \
scripts/splitdiff
for script in $(bin_SCRIPTS); do \
if [ -f $(top_builddir)/$$script ]; then \
chmod a+x $(top_builddir)/$$script; \
else \
chmod a+x $(top_srcdir)/$$script; \
fi \
done
for test in $(TESTS); do \
chmod a+x $(top_srcdir)/$$test; \
done
# Only require test-perms when actually running tests, not for distribution
check-local: test-perms
$(TESTS): | test-perms
# Ensure subdirectories are built before distribution
BUILT_SOURCES = lib-built
lib-built: lib/libgnu.a
touch lib-built
lib/libgnu.a:
$(MAKE) $(AM_MAKEFLAGS) -C lib all
distclean-local:
-rm -rf $(top_builddir)/test-arena
-rm -f lib-built
if ENABLE_FUZZING
# Fuzzing-specific instrumented binaries
noinst_PROGRAMS += src/fuzz-filterdiff src/fuzz-interdiff src/fuzz-rediff
src_fuzz_filterdiff_SOURCES = $(src_filterdiff_SOURCES)
src_fuzz_filterdiff_LDADD = $(src_filterdiff_LDADD)
src_fuzz_filterdiff_CFLAGS = $(AM_CFLAGS) $(FUZZ_CFLAGS)
src_fuzz_filterdiff_CPPFLAGS = $(AM_CPPFLAGS) $(FUZZ_CPPFLAGS)
src_fuzz_interdiff_SOURCES = $(src_interdiff_SOURCES)
src_fuzz_interdiff_LDADD = $(src_interdiff_LDADD)
src_fuzz_interdiff_CFLAGS = $(AM_CFLAGS) $(FUZZ_CFLAGS)
src_fuzz_interdiff_CPPFLAGS = $(AM_CPPFLAGS) $(FUZZ_CPPFLAGS)
src_fuzz_rediff_SOURCES = $(src_rediff_SOURCES)
src_fuzz_rediff_LDADD = $(src_rediff_LDADD)
src_fuzz_rediff_CFLAGS = $(AM_CFLAGS) $(FUZZ_CFLAGS)
src_fuzz_rediff_CPPFLAGS = $(AM_CPPFLAGS) $(FUZZ_CPPFLAGS)
# Override CC and LINK for fuzzing targets to use AFL++ for both compilation and linking
$(src_fuzz_filterdiff_OBJECTS): CC = $(AFL_CC)
$(src_fuzz_interdiff_OBJECTS): CC = $(AFL_CC)
$(src_fuzz_rediff_OBJECTS): CC = $(AFL_CC)
# Use AFL++ compiler for linking to include AFL++ runtime
src_fuzz_filterdiff_LINK = $(AFL_CC) $(AM_CFLAGS) $(CFLAGS) $(FUZZ_CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
src_fuzz_interdiff_LINK = $(AFL_CC) $(AM_CFLAGS) $(CFLAGS) $(FUZZ_CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
src_fuzz_rediff_LINK = $(AFL_CC) $(AM_CFLAGS) $(CFLAGS) $(FUZZ_CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
# Create fuzzing symlinks (like regular tools)
src/fuzz-combinediff$(EXEEXT): src/fuzz-interdiff$(EXEEXT)
ln -sf $(notdir $<) $@
src/fuzz-flipdiff$(EXEEXT): src/fuzz-interdiff$(EXEEXT)
ln -sf $(notdir $<) $@
src/fuzz-lsdiff$(EXEEXT): src/fuzz-filterdiff$(EXEEXT)
ln -sf $(notdir $<) $@
src/fuzz-grepdiff$(EXEEXT): src/fuzz-filterdiff$(EXEEXT)
ln -sf $(notdir $<) $@
src/fuzz-patchview$(EXEEXT): src/fuzz-filterdiff$(EXEEXT)
ln -sf $(notdir $<) $@
CLEANFILES += src/fuzz-combinediff src/fuzz-flipdiff src/fuzz-lsdiff src/fuzz-grepdiff src/fuzz-patchview
# Fuzzing targets - use instrumented binaries when available
fuzz-help fuzz-corpus fuzz-test fuzz-analyze fuzz-clean fuzz-check fuzz-ci fuzz-stats:
@if [ -f Makefile.fuzz ]; then \
$(MAKE) -f Makefile.fuzz FUZZ_BINDIR="$(top_builddir)/src" $@; \
else \
echo "Fuzzing not available - Makefile.fuzz not found"; \
fi
fuzz-filterdiff fuzz-interdiff fuzz-rediff fuzz-grepdiff fuzz-lsdiff: src/fuzz-filterdiff src/fuzz-interdiff src/fuzz-rediff src/fuzz-lsdiff$(EXEEXT) src/fuzz-grepdiff$(EXEEXT)
@if [ -f Makefile.fuzz ]; then \
$(MAKE) -f Makefile.fuzz FUZZ_BINDIR="$(top_builddir)/src" $@; \
else \
echo "Fuzzing not available - Makefile.fuzz not found"; \
fi
else
# Fuzzing targets - delegate to separate makefile (non-instrumented fallback)
fuzz-help fuzz-corpus fuzz-test fuzz-analyze fuzz-clean fuzz-check fuzz-ci fuzz-stats:
@if [ -f Makefile.fuzz ]; then \
echo "Warning: Using non-instrumented binaries - configure with --enable-fuzzing for better results"; \
$(MAKE) -f Makefile.fuzz $@; \
else \
echo "Fuzzing not available - Makefile.fuzz not found"; \
fi
fuzz-filterdiff fuzz-interdiff fuzz-rediff fuzz-grepdiff fuzz-lsdiff:
@if [ -f Makefile.fuzz ]; then \
echo "Warning: Using non-instrumented binaries - configure with --enable-fuzzing for better results"; \
$(MAKE) -f Makefile.fuzz $@; \
else \
echo "Fuzzing not available - Makefile.fuzz not found"; \
fi
endif
EXTRA_DIST = $(man_MANS) \
tests/common.sh tests/soak-test \
$(TESTS) $(XFAIL_TESTS) \
tests/scanner/test_basic.c tests/scanner/test_accumulated_headers.c tests/scanner/test_input_validation.c \
src/patch_scanner.c src/patch_scanner.h \
README.md BUGS COPYING TODO ChangeLog \
bootstrap \
patchutils.spec \
doc/patchutils.xml \
patchview/README.patchview \
m4/gnulib-cache.m4 \
Makefile.fuzz \
fuzz/README.md fuzz/generate_corpus.sh fuzz/run_fuzz.sh fuzz/analyze_crashes.sh \
fuzz/patch.dict \
bash-completion-patchutils
tag:
cvs tag -c `echo V@VERSION@ | tr . _`