Reland bug 121341.
[wine-gecko.git] / modules / libreg / src / Makefile.in
blobd2be7745b48370e0711823ca8eaacd9eb461071e
2 # ***** BEGIN LICENSE BLOCK *****
3 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 # The contents of this file are subject to the Mozilla Public License Version
6 # 1.1 (the "License"); you may not use this file except in compliance with
7 # the License. You may obtain a copy of the License at
8 # http://www.mozilla.org/MPL/
10 # Software distributed under the License is distributed on an "AS IS" basis,
11 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 # for the specific language governing rights and limitations under the
13 # License.
15 # The Original Code is mozilla.org code.
17 # The Initial Developer of the Original Code is
18 # Netscape Communications Corporation.
19 # Portions created by the Initial Developer are Copyright (C) 1998
20 # the Initial Developer. All Rights Reserved.
22 # Contributor(s):
24 # Alternatively, the contents of this file may be used under the terms of
25 # either the GNU General Public License Version 2 or later (the "GPL"), or
26 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 # in which case the provisions of the GPL or the LGPL are applicable instead
28 # of those above. If you wish to allow use of your version of this file only
29 # under the terms of either the GPL or the LGPL, and not to allow others to
30 # use your version of this file under the terms of the MPL, indicate your
31 # decision by deleting the provisions above and replace them with the notice
32 # and other provisions required by the GPL or the LGPL. If you do not delete
33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL.
36 # ***** END LICENSE BLOCK *****
38 DEPTH = ../../..
39 topsrcdir = @top_srcdir@
40 srcdir = @srcdir@
41 VPATH = @srcdir@
43 include $(DEPTH)/config/autoconf.mk
44 include $(srcdir)/objs.mk
46 MODULE = libreg
47 LIBRARY_NAME = mozreg_s
48 DIST_INSTALL = 1
50 # MacOSX requires the MoreFiles module
51 ifeq ($(OS_ARCH),Darwin)
52 REQUIRES = macmorefiles
53 endif
55 CSRCS = $(MODULES_LIBREG_SRC_LCSRCS) nr_bufio.c
57 BIN_SRCS = VerReg.c reg.c vr_stubs.c
58 PROGOBJS = $(addprefix R_,$(BIN_SRCS:.c=.o))
60 # We don't want a shared lib. Static lib only.
61 FORCE_STATIC_LIB = 1
63 # Force use of PIC
64 FORCE_USE_PIC = 1
66 # We do want this in the static libraries list
67 EXPORT_LIBRARY = 1
69 USE_STATIC_LIBS = 1
71 SDK_LIBRARY = $(LIBRARY)
73 ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
74 SHARED_LIBRARY_LIBS += $(DEPTH)/xpcom/MoreFiles/libmacmorefiles_s.a
75 endif
77 include $(topsrcdir)/config/config.mk
79 DEFINES += -DUSE_BUFFERED_REGISTRY_IO
80 # Memory mapped files are not supported under QNX, Neutrino, HP-UX and BeOS
81 #ifeq (,$(filter BeOS HP-UX QNX,$(OS_ARCH)))
82 #CSRCS += mmapio.c
83 #DEFINES += -DUSE_MMAP_REGISTRY_IO
84 #endif
86 include $(topsrcdir)/config/rules.mk
88 R_%.o: %.c
89 $(CC) $(OUTOPTION)$@ -c $(COMPILE_CFLAGS) -DSTANDALONE_REGISTRY $<
91 ifdef _MSC_VER
92 # Don't include directives about which CRT to use
93 OS_COMPILE_CXXFLAGS += -Zl
94 OS_COMPILE_CFLAGS += -Zl
95 DEFINES += -D_USE_ANSI_CPP
96 endif