diff options
author | June McEnroe <june@causal.agency> | 2019-11-21 17:10:11 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-21 17:10:11 -0500 |
commit | 9a3f74472ab7fa1312608b45c3a3cdea393723b9 (patch) | |
tree | 914571694112fa78f29f8d5f78a2b37955f08bca /bin/1sh/libedit/Makefile | |
parent | Revert "Use local libedit" (diff) | |
download | src-9a3f74472ab7fa1312608b45c3a3cdea393723b9.tar.gz src-9a3f74472ab7fa1312608b45c3a3cdea393723b9.zip |
Remove vendored libedit
Diffstat (limited to '')
-rw-r--r-- | bin/1sh/libedit/Makefile | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/bin/1sh/libedit/Makefile b/bin/1sh/libedit/Makefile deleted file mode 100644 index 9b13d59d..00000000 --- a/bin/1sh/libedit/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -CFLAGS += -std=c99 -Wall -Wextra - --include config.mk - -OBJS += chared.o -OBJS += chartype.o -OBJS += common.o -OBJS += el.o -OBJS += eln.o -OBJS += emacs.o -OBJS += filecomplete.o -OBJS += hist.o -OBJS += history.o -OBJS += historyn.o -OBJS += keymacro.o -OBJS += literal.o -OBJS += map.o -OBJS += parse.o -OBJS += prompt.o -OBJS += read.o -OBJS += readline.o -OBJS += refresh.o -OBJS += search.o -OBJS += sig.o -OBJS += terminal.o -OBJS += tokenizer.o -OBJS += tokenizern.o -OBJS += tty.o -OBJS += vi.o - -AHDR = common.h emacs.h vi.h -ASRC = common.c emacs.c vi.c - -libedit.a: $(OBJS) - $(AR) $(ARFLAGS) $@ $(OBJS) - -$(OBJS): $(AHDR) fcns.h func.h help.h - -common.h: makelist common.c - sh makelist -h common.c > common.h - -emacs.h: makelist emacs.c - sh makelist -h emacs.c > emacs.h - -vi.h: makelist vi.c - sh makelist -h vi.c > vi.h - -fcns.h: makelist $(AHDR) - sh makelist -fh $(AHDR) > fcns.h - -func.h: makelist $(AHDR) - sh makelist -fc $(AHDR) > func.h - -help.h: makelist $(ASRC) - sh makelist -bh $(ASRC) > help.h - -clean: - rm -f libedit.a $(OBJS) $(AHDR) fcns.h func.h help.h |