diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/makefile.w32-in | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in index cdf44f614b6..c60d85aa01c 100644 --- a/lib/makefile.w32-in +++ b/lib/makefile.w32-in @@ -27,7 +27,8 @@ GNULIBOBJS = $(BLD)/dtoastr.$(O) \ $(BLD)/getopt.$(O) \ $(BLD)/getopt1.$(O) \ $(BLD)/strftime.$(O) \ - $(BLD)/time_r.$(O) + $(BLD)/time_r.$(O) \ + $(BLD)/md5.$(O) # # Build the library @@ -93,11 +94,19 @@ $(BLD)/time_r.$(O) : \ $(EMACS_ROOT)/src/m/intel386.h \ $(EMACS_ROOT)/src/config.h +$(BLD)/md5.$(O) : \ + $(EMACS_ROOT)/lib/md5.c \ + $(EMACS_ROOT)/src/s/ms-w32.h \ + $(EMACS_ROOT)/src/m/intel386.h \ + $(EMACS_ROOT)/src/config.h \ + $(EMACS_ROOT)/nt/inc/sys/stat.h \ + $(EMACS_ROOT)/lib/md5.h + # The following dependencies are for supporting parallel builds, where # we must make sure $(BLD) exists before any compilation starts. # $(BLD)/dtoastr.$(O) $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O): stamp_BLD -$(BLD)/strftime.$(O) $(BLD)/time_r.$(O): stamp_BLD +$(BLD)/strftime.$(O) $(BLD)/time_r.$(O) $(BLD)/md5.$(O): stamp_BLD # # Headers we would preprocess if we could. |