rename bdiff.c to isequal.c, make it handle different line-endings as equal

This commit is contained in:
mrdudz
2020-08-19 14:50:12 +02:00
parent 85e8a6cb9f
commit 1a92368aed
6 changed files with 62 additions and 36 deletions

View File

@@ -37,7 +37,7 @@ WORKDIR = ..$S..$Stestwrk$Smisc
OPTIONS = g O Os Osi Osir Osr Oi Oir Or
DIFF = $(WORKDIR)$Sbdiff$(EXE)
DIFF = $(WORKDIR)$Sisequal$(EXE)
CC = gcc
CFLAGS = -O2
@@ -58,7 +58,7 @@ all: $(TESTS)
$(WORKDIR):
$(call MKDIR,$(WORKDIR))
$(DIFF): ../bdiff.c | $(WORKDIR)
$(DIFF): ../isequal.c | $(WORKDIR)
$(CC) $(CFLAGS) -o $@ $<
define PRG_template