From 47389f1cb2d50cb3abbdbd79e31a551fc058660f Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 10 Mar 2018 21:43:34 +0000 Subject: [PATCH] 68000: build vile --- Applications/util/Makefile.68000 | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Applications/util/Makefile.68000 b/Applications/util/Makefile.68000 index 186f5dd6..954807db 100644 --- a/Applications/util/Makefile.68000 +++ b/Applications/util/Makefile.68000 @@ -116,22 +116,27 @@ SRCTC = tget.c \ tchelp.c \ marksman.c +SRCCURSES = vile.c + SKIPPED = OBJS = $(SRCS:.c=.o) OBJSNS = $(SRCSNS:.c=.o) OBJTC = $(SRCTC:.c=.o) +OBJCURSES = $(SRCCURSES:.c=.o) APPS = $(OBJS:.o=) APPSNS = $(OBJSNS:.o=) APPTC = $(OBJTC:.o=) +APPCURSES = $(OBJCURSES:.o=) -all: $(APPS) $(APPSNS) $(APPTC) size.report +all: $(APPS) $(APPSNS) $(APPTC) $(APPCURSES) size.report $(APPS): $(CRT0) $(APPSNS): $(CRT0NS) $(APPTC): $(CRT0) +$(APPCURSES): $(CRT0) $(APPS) $(APPSNS): %: %.o $(LINKER) $^ -o $@.bin $(LINKER_OPT) @@ -141,6 +146,10 @@ $(APPTC): %: %.o $(LINKER) $^ -o $@.bin -ltermcap68000 $(LINKER_OPT) $(ELF2FUZIX) -o $@ $@.bin +$(APPCURSES): %: %.o + $(LINKER) $^ -o $@.bin -lcurses68000 -ltermcap68000 $(LINKER_OPT) + $(ELF2FUZIX) -o $@ $@.bin + size.report: $(APPS) $(APPSNS) $(APPTC) ls -l $^ > $@ -- 2.34.1