diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-02-20 11:31:01 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-02-20 11:31:01 -0800 |
commit | 2763cfc26857991fc4ccde9ff837c06032ac1008 (patch) | |
tree | abac695a874e6c4912897b203ae960499e1b4b36 /lib | |
parent | d209feedbdbd88aff5479303fdca7f69d6dded27 (diff) | |
parent | 32159fc37e0281a54dd35abb17aac7302104fd5e (diff) | |
download | emacs-2763cfc26857991fc4ccde9ff837c06032ac1008.tar.gz |
Merge from mainline.
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. |