From f480177cba8c106402884338d2a690daf7cc316c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 1 Jan 2019 01:01:19 -0500 Subject: Remove edi (again) --- bin/edi/Makefile | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 bin/edi/Makefile (limited to 'bin/edi/Makefile') diff --git a/bin/edi/Makefile b/bin/edi/Makefile deleted file mode 100644 index e7f16b39..00000000 --- a/bin/edi/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -CFLAGS += -Wall -Wextra -Wpedantic -LDLIBS = -lcursesw - -OBJS += buffer.o -OBJS += edi.o -OBJS += file.o -OBJS += iter.o -OBJS += log.o -OBJS += store.o -OBJS += table.o - -TESTS += buffer.t -TESTS += iter.t -TESTS += table.t - -all: tags edi test - -tags: *.h *.c - ctags -w *.h *.c - -edi: $(OBJS) - $(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@ - -$(OBJS): edi.h - -test: $(TESTS) - set -e; $(TESTS:%=./%;) - -.SUFFIXES: .t - -.c.t: - $(CC) $(CFLAGS) -DTEST $(LDFLAGS) $< $(LDLIBS) -o $@ - -clean: - rm -f tags edi $(OBJS) $(TESTS) -- cgit 1.4.1