commit 440d36388f04f175fd7c97bd2d87ad60f9cb8675 from: Stefan Sperling date: Sun Sep 20 21:00:02 2020 UTC remove unused portable GNUmakefile commit - 009611347562f3a497a44c36a135deb5f7182335 commit + 440d36388f04f175fd7c97bd2d87ad60f9cb8675 blob - 7675e9a5b6d87c99364a7f47ca7d5992766b7f04 (mode 644) blob + /dev/null --- GNUmakefile +++ /dev/null @@ -1,26 +0,0 @@ -# diff-portable - -PROG= diff -SRCS= diff.c diff_atomize_text.c diff_main.c diff_myers.c \ - diff_patience.c diff_output.c - -CFLAGS+= -Wstrict-prototypes -Wunused-variable - - -# Compat sources -VPATH= $(CURDIR)/compat -SRCS+= getprogname_linux.c recallocarray.c -CFLAGS+= -I$(CURDIR)/compat/include - - -# Shouldn't need to change anything below -all: $(PROG) - -$(PROG): $(SRCS:.c=.o) - -.c.o: - $(CC) -c $(CFLAGS) $< - -.PHONY: clean -clean: - rm -f $(PROG) *.o