From b6f39d8c6aac35e80f7f7766b5025423f87f1cdd Mon Sep 17 00:00:00 2001 From: Steve Dee Date: Fri, 17 Jan 2014 09:38:15 -0800 Subject: [PATCH] Make some objects depend on vere.h --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9164f3cef..8ad0188aa 100644 --- a/Makefile +++ b/Makefile @@ -526,7 +526,7 @@ BASE_OFILES=\ OUT_OFILES=\ outside/jhttp/http_parser.o -VERE_OFILES=\ +V_OFILES=\ v/ames.o \ v/batz.o \ v/http.o \ @@ -537,7 +537,10 @@ VERE_OFILES=\ v/time.o \ v/term.o \ v/unix.o \ - v/walk.o \ + v/walk.o + +VERE_OFILES=\ + $(V_OFILES) \ $(BASE_OFILES) \ $(OUT_OFILES) @@ -548,6 +551,8 @@ all: $(BIN)/vere $(LIBUV): $(MAKE) -C outside/libuv +$(V_OFILES) f/loom.o f/trac.o: include/v/vere.h + $(BIN)/vere: $(VERE_OFILES) $(LIBUV) mkdir -p $(BIN) $(CLD) $(CLDOSFLAGS) -o $(BIN)/vere $(VERE_OFILES) $(LIBUV) $(LIBS)