From d2cf5bb6c6eb9ec09aaf7db31c1bb7e750d8dcc5 Mon Sep 17 00:00:00 2001 From: Neil Date: Mon, 30 Dec 2019 12:59:48 +1100 Subject: Remove Scintilla.def prerequisite as not used by gcc or clang. That allows simplifying the recipe to just use the prerequisites $^. --- win32/makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'win32') diff --git a/win32/makefile b/win32/makefile index 3dad7d045..7aa1be716 100644 --- a/win32/makefile +++ b/win32/makefile @@ -146,11 +146,11 @@ LEXCOMPONENT_OBJS = \ ScintillaDLL.o \ ScintRes.o -$(COMPONENT): $(COMPONENT_OBJS) Scintilla.def - $(CXX) $(LDFLAGS) -o $@ $(STRIPFLAG) $(COMPONENT_OBJS) $(CXXFLAGS) $(LIBS) +$(COMPONENT): $(COMPONENT_OBJS) + $(CXX) $(LDFLAGS) -o $@ $(STRIPFLAG) $^ $(CXXFLAGS) $(LIBS) -$(LEXCOMPONENT): $(LEXCOMPONENT_OBJS) Scintilla.def - $(CXX) $(LDFLAGS) -o $@ $(STRIPFLAG) $(LEXCOMPONENT_OBJS) $(CXXFLAGS) $(LIBS) +$(LEXCOMPONENT): $(LEXCOMPONENT_OBJS) + $(CXX) $(LDFLAGS) -o $@ $(STRIPFLAG) $^ $(CXXFLAGS) $(LIBS) $(LIBSCI): $(SCILEX_OBJS) $(AR) $(ARFLAGS) $@ $^ -- cgit v1.2.3