diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/makefile.w32-in | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in index 78a0de0a0ef..f2853f10cb9 100644 --- a/lib/makefile.w32-in +++ b/lib/makefile.w32-in | |||
| @@ -23,7 +23,10 @@ ALL = gnulib | |||
| 23 | LOCAL_FLAGS = -I. -I../nt/inc -I../src | 23 | LOCAL_FLAGS = -I. -I../nt/inc -I../src |
| 24 | LIBS = | 24 | LIBS = |
| 25 | 25 | ||
| 26 | GNULIBOBJS = $(BLD)/dtoastr.$(O) \ | 26 | GNULIBOBJS = $(BLD)/c-ctype.$(O) \ |
| 27 | $(BLD)/c-strcasecmp.$(O) \ | ||
| 28 | $(BLD)/c-strncasecmp.$(O) \ | ||
| 29 | $(BLD)/dtoastr.$(O) \ | ||
| 27 | $(BLD)/dtotimespec.$(O) \ | 30 | $(BLD)/dtotimespec.$(O) \ |
| 28 | $(BLD)/getopt.$(O) \ | 31 | $(BLD)/getopt.$(O) \ |
| 29 | $(BLD)/getopt1.$(O) \ | 32 | $(BLD)/getopt1.$(O) \ |
| @@ -64,6 +67,26 @@ TAGS: FRC | |||
| 64 | EMACS_ROOT = .. | 67 | EMACS_ROOT = .. |
| 65 | SRC = . | 68 | SRC = . |
| 66 | 69 | ||
| 70 | $(BLD)/c-ctype.$(O) : \ | ||
| 71 | $(SRC)/c-ctype.c \ | ||
| 72 | $(SRC)/c-ctype.h \ | ||
| 73 | $(EMACS_ROOT)/src/s/ms-w32.h \ | ||
| 74 | $(EMACS_ROOT)/src/config.h | ||
| 75 | |||
| 76 | $(BLD)/c-strcasecmp.$(O) : \ | ||
| 77 | $(SRC)/c-strcasecmp.c \ | ||
| 78 | $(SRC)/c-strcase.h \ | ||
| 79 | $(SRC)/c-ctype.h \ | ||
| 80 | $(EMACS_ROOT)/src/s/ms-w32.h \ | ||
| 81 | $(EMACS_ROOT)/src/config.h | ||
| 82 | |||
| 83 | $(BLD)/c-strncasecmp.$(O) : \ | ||
| 84 | $(SRC)/c-strncasecmp.c \ | ||
| 85 | $(SRC)/c-strcase.h \ | ||
| 86 | $(SRC)/c-ctype.h \ | ||
| 87 | $(EMACS_ROOT)/src/s/ms-w32.h \ | ||
| 88 | $(EMACS_ROOT)/src/config.h | ||
| 89 | |||
| 67 | $(BLD)/dtoastr.$(O) : \ | 90 | $(BLD)/dtoastr.$(O) : \ |
| 68 | $(SRC)/dtoastr.c \ | 91 | $(SRC)/dtoastr.c \ |
| 69 | $(SRC)/ftoastr.c \ | 92 | $(SRC)/ftoastr.c \ |