lib/makefile.w32-in: Adapt to changes in 2011-04-06T05:19:39Z!eggert@cs.ucla.edu.
[emacs.git] / lib / makefile.w32-in
blob895cd0b8369b1ff296a8be5ea3a0b220848bafe7
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2011 Free Software Foundation, Inc.
4 # This file is part of GNU Emacs.
6 # GNU Emacs is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
19 ALL = gnulib
21 .PHONY: $(ALL)
23 LOCAL_FLAGS     = -DHAVE_CONFIG_H=1 -I. -I../nt/inc -I../src
24 LIBS            =
26 GNULIBOBJS = $(BLD)/dtoastr.$(O) \
27              $(BLD)/getopt.$(O)  \
28              $(BLD)/getopt1.$(O) \
29              $(BLD)/strftime.$(O) \
30              $(BLD)/time_r.$(O) \
31              $(BLD)/md5.$(O) \
32              $(BLD)/filemode.$(O) \
33              $(BLD)/careadlinkat.$(O)
36 # Build the library
38 $(BLD)/libgnu.$(A):     $(GNULIBOBJS)
39         - $(DEL) $@
40         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
42 gnulib: stamp_BLD $(BLD)/libgnu.$(A)
45 # Build everything
47 all:            stamp_BLD $(ALL)
49 ### TAGS ###
51 TAGS:
52          ../lib-src/$(BLD)/etags.exe *.c *.h
54 ### DEPENDENCIES ###
56 EMACS_ROOT      = ..
57 SRC             = .
59 $(BLD)/dtoastr.$(O) : \
60         $(SRC)/dtoastr.c \
61         $(SRC)/ftoastr.c \
62         $(SRC)/ftoastr.h \
63         $(SRC)/intprops.h \
64         $(EMACS_ROOT)/nt/inc/sys/stat.h \
65         $(EMACS_ROOT)/src/s/ms-w32.h \
66         $(EMACS_ROOT)/src/m/intel386.h \
67         $(EMACS_ROOT)/src/config.h
69 $(BLD)/getopt.$(O) : \
70         $(SRC)/getopt.c \
71         $(SRC)/getopt.h \
72         $(SRC)/getopt_int.h \
73         $(SRC)/gettext.h \
74         $(EMACS_ROOT)/nt/inc/unistd.h \
75         $(EMACS_ROOT)/nt/inc/sys/stat.h \
76         $(EMACS_ROOT)/src/s/ms-w32.h \
77         $(EMACS_ROOT)/src/m/intel386.h \
78         $(EMACS_ROOT)/src/config.h
80 $(BLD)/getopt1.$(O) : \
81         $(SRC)/getopt1.c \
82         $(SRC)/getopt.h \
83         $(SRC)/getopt_int.h \
84         $(EMACS_ROOT)/nt/inc/sys/stat.h \
85         $(EMACS_ROOT)/src/s/ms-w32.h \
86         $(EMACS_ROOT)/src/m/intel386.h \
87         $(EMACS_ROOT)/src/config.h
89 $(BLD)/strftime.$(O) : \
90         $(SRC)/strftime.c \
91         $(SRC)/strftime.h \
92         $(EMACS_ROOT)/nt/inc/stdbool.h \
93         $(EMACS_ROOT)/nt/inc/sys/stat.h \
94         $(EMACS_ROOT)/src/s/ms-w32.h \
95         $(EMACS_ROOT)/src/m/intel386.h \
96         $(EMACS_ROOT)/src/config.h
98 $(BLD)/time_r.$(O) : \
99         $(SRC)/time_r.c \
100         $(EMACS_ROOT)/nt/inc/sys/stat.h \
101         $(EMACS_ROOT)/src/s/ms-w32.h \
102         $(EMACS_ROOT)/src/m/intel386.h \
103         $(EMACS_ROOT)/src/config.h
105 $(BLD)/md5.$(O) : \
106         $(SRC)/md5.c \
107         $(SRC)/md5.h \
108         $(EMACS_ROOT)/nt/inc/stdint.h \
109         $(EMACS_ROOT)/nt/inc/sys/stat.h \
110         $(EMACS_ROOT)/src/s/ms-w32.h \
111         $(EMACS_ROOT)/src/m/intel386.h \
112         $(EMACS_ROOT)/src/config.h
114 $(BLD)/filemode.$(O) : \
115         $(SRC)/filemode.c \
116         $(SRC)/filemode.h \
117         $(EMACS_ROOT)/nt/inc/sys/stat.h \
118         $(EMACS_ROOT)/src/s/ms-w32.h \
119         $(EMACS_ROOT)/src/m/intel386.h \
120         $(EMACS_ROOT)/src/config.h
122 $(BLD)/careadlinkat.$(O) : \
123         $(SRC)/careadlinkat.c \
124         $(SRC)/careadlinkat.h \
125         $(SRC)/allocator.h \
126         $(EMACS_ROOT)/nt/inc/unistd.h \
127         $(EMACS_ROOT)/nt/inc/sys/stat.h \
128         $(EMACS_ROOT)/src/s/ms-w32.h \
129         $(EMACS_ROOT)/src/m/intel386.h \
130         $(EMACS_ROOT)/src/config.h
132 # The following dependencies are for supporting parallel builds, where
133 # we must make sure $(BLD) exists before any compilation starts.
135 $(BLD)/dtoastr.$(O) $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O): stamp_BLD
136 $(BLD)/strftime.$(O) $(BLD)/time_r.$(O) $(BLD)/md5.$(O): stamp_BLD
137 $(BLD)/filemode.$(O) $(BLD)/careadlinkat.$(O): stamp_BLD
140 # Headers we would preprocess if we could.
142 getopt.h:       getopt_.h
143         $(CP) $(ALL_DEPS) $@
146 # Maintenance
148 clean:
149         - $(DEL) $(COMPILER_TEMP_FILES)
150         - $(DEL) getopt.h
151         - $(DEL_TREE) $(OBJDIR)
152         - $(DEL) stamp_BLD
154 distclean:      cleanall
155         - $(DEL) TAGS
156         - $(DEL) Makefile
158 maintainer-clean: distclean
159         - $(DEL) getopt_.h
161 cleanall:       clean
162         - $(DEL_TREE) obj
163         - $(DEL_TREE) obj-spd
164         - $(DEL_TREE) oo
165         - $(DEL_TREE) oo-spd
167 # A dummy target to force other targets to be evaluated.
168 doit:
170 getopt_.h: getopt.in.h $(ARG_NONNULL_H)
171         $(MAKE) $(MFLAGS) getopt_.h-$(SHELLTYPE)
173 getopt_.h-CMD: doit
174         @echo getopt.in.h or $(ARG_NONNULL_H) is newer than getopt_.h.
175         @echo Run "$(MAKETYPE) getopt_h" in the lib/ subdirectory.
176         @echo You will need GNU Sed to be installed.
177         exit -1
179 getopt_.h-SH: doit
180         @echo getopt.in.h or $(ARG_NONNULL_H) is newer than getopt_.h.
181         @echo Run '"$(MAKETYPE) getopt_h"' in the lib/ subdirectory.
182         @echo You will need GNU Sed to be installed.
183         exit -1
185 # Generating getopt_.h from getopt.in.h.
187 # To avoid requiring all end users to install Sed, we have below
188 # a maintainer-only target that produces getopt_.h from getopt.in.h.
189 # For easier maintenance, all the strings that replace the @FOO@
190 # placeholder are defined as Make macros below.
192 HAVE_GETOPT_H = HAVE_GETOPT_H
193 INCLUDE_NEXT = include_next
194 PRAGMA_SYSTEM_HEADER = \#pragma GCC system_header
195 PRAGMA_COLUMNS =
196 NEXT_GETOPT_H = <getopt.h>
197 ARG_NONNULL_H = ../arg-nonnull.h
199 getopt_h:
200         - $(DEL) getopt_.h-t getopt_.h
201         sed -e "s!@HAVE_GETOPT_H@!$(HAVE_GETOPT_H)!g" \
202             -e "s!@INCLUDE_NEXT@!$(INCLUDE_NEXT)!g" \
203             -e "s!@PRAGMA_SYSTEM_HEADER@!$(PRAGMA_SYSTEM_HEADER)!g" \
204             -e "s!@PRAGMA_COLUMNS@!$(PRAGMA_COLUMNS)!g" \
205             -e "s!@NEXT_GETOPT_H@!$(NEXT_GETOPT_H)!g" \
206             -e "/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)" \
207             -e "/^\# include_next/i # ifndef __GNUC__" \
208             -e "/^\# include_next/i # include <next_getopt.h>" \
209             -e "/^\# include_next/i # else" \
210             -e "/^\# include_next/a # endif" \
211               < getopt.in.h > getopt_.h-t
212         $(CP) getopt_.h-t getopt_.h
213         - $(DEL) getopt_.h-t