diff options
author | Neil <nyamatongwe@gmail.com> | 2019-12-30 12:59:48 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-12-30 12:59:48 +1100 |
commit | d2cf5bb6c6eb9ec09aaf7db31c1bb7e750d8dcc5 (patch) | |
tree | ab31179aba6608305cbb1e600a3928189f24e4d2 /win32/makefile | |
parent | f142bb942d54b1387dc887220072a3f798a285a6 (diff) | |
download | scintilla-mirror-d2cf5bb6c6eb9ec09aaf7db31c1bb7e750d8dcc5.tar.gz |
Remove Scintilla.def prerequisite as not used by gcc or clang.
That allows simplifying the recipe to just use the prerequisites $^.
Diffstat (limited to 'win32/makefile')
-rw-r--r-- | win32/makefile | 8 |
1 files changed, 4 insertions, 4 deletions
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) $@ $^ |