diff options
author | June McEnroe <june@causal.agency> | 2019-01-01 01:01:19 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-01-01 01:01:19 -0500 |
commit | f480177cba8c106402884338d2a690daf7cc316c (patch) | |
tree | 72b20d0a003e252437f9d1261fe3361d4172bdf0 /bin/edi/Makefile | |
parent | Rename rec to wat (diff) | |
download | src-f480177cba8c106402884338d2a690daf7cc316c.tar.gz src-f480177cba8c106402884338d2a690daf7cc316c.zip |
Remove edi (again)
Diffstat (limited to 'bin/edi/Makefile')
-rw-r--r-- | bin/edi/Makefile | 35 |
1 files changed, 0 insertions, 35 deletions
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) |