makefile.mk (0bb8916b) makefile.mk (ebbaf3b8)
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 13 unchanged lines hidden (view full) ---

22
23PRJ=..
24
25PRJNAME=cppuhelper
26TARGET=cppuhelper
27
28ENABLE_EXCEPTIONS=TRUE
29USE_DEFFILE=TRUE
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 13 unchanged lines hidden (view full) ---

22
23PRJ=..
24
25PRJNAME=cppuhelper
26TARGET=cppuhelper
27
28ENABLE_EXCEPTIONS=TRUE
29USE_DEFFILE=TRUE
30VISIBILITY_HIDDEN=TRUE
30
31# not strictly a bootstrap service but containing
32# bootstrap code that may require generated files
33# without "-L" (light) switch
34BOOTSTRAP_SERVICE=TRUE
35
36.IF "$(OS)" != "WNT" && "$(GUI)"!="OS2"
37UNIXVERSIONNAMES=UDK

--- 78 unchanged lines hidden (view full) ---

116
117.IF "$(debug)" != ""
118# msvc++: no inlining for debugging
119.IF "$(COM)" == "MSC"
120CFLAGS += -Ob0
121.ENDIF
122.ENDIF
123
31
32# not strictly a bootstrap service but containing
33# bootstrap code that may require generated files
34# without "-L" (light) switch
35BOOTSTRAP_SERVICE=TRUE
36
37.IF "$(OS)" != "WNT" && "$(GUI)"!="OS2"
38UNIXVERSIONNAMES=UDK

--- 78 unchanged lines hidden (view full) ---

117
118.IF "$(debug)" != ""
119# msvc++: no inlining for debugging
120.IF "$(COM)" == "MSC"
121CFLAGS += -Ob0
122.ENDIF
123.ENDIF
124
125CFLAGS += -DCPPUHELPER_DLLIMPLEMENTATION
126
124SLOFILES= \
125 $(SLO)$/typeprovider.obj \
126 $(SLO)$/exc_thrower.obj \
127 $(SLO)$/servicefactory.obj \
128 $(SLO)$/bootstrap.obj \
129 $(SLO)$/primeweak.obj \
130 $(SLO)$/implbase.obj \
131 $(SLO)$/implbase_ex.obj \

--- 36 unchanged lines hidden (view full) ---

168SHL1OBJS = $(SLOFILES)
169SHL1RPATH=URELIB
170
171SHL1DEF=$(MISC)$/$(SHL1TARGET).def
172
173DEF1NAME=$(SHL1TARGET)
174
175.IF "$(COMNAME)"=="msci"
127SLOFILES= \
128 $(SLO)$/typeprovider.obj \
129 $(SLO)$/exc_thrower.obj \
130 $(SLO)$/servicefactory.obj \
131 $(SLO)$/bootstrap.obj \
132 $(SLO)$/primeweak.obj \
133 $(SLO)$/implbase.obj \
134 $(SLO)$/implbase_ex.obj \

--- 36 unchanged lines hidden (view full) ---

171SHL1OBJS = $(SLOFILES)
172SHL1RPATH=URELIB
173
174SHL1DEF=$(MISC)$/$(SHL1TARGET).def
175
176DEF1NAME=$(SHL1TARGET)
177
178.IF "$(COMNAME)"=="msci"
176SHL1VERSIONMAP=msvc_win32_intel.map
179.ELIF "$(COMNAME)"=="mscx"
177.ELIF "$(COMNAME)"=="sunpro5"
178SHL1VERSIONMAP=cc5_solaris_sparc.map
179.ELIF "$(GUI)$(COMNAME)"=="OS2gcc3"
180SHL1VERSIONMAP=gcc3os2.map
181.ELSE
182SHL1VERSIONMAP=gcc3.map
183.ENDIF
184
185# --- Targets ------------------------------------------------------
186
187.IF "$(diag)"!=""
188CFLAGS += -DDIAG=$(diag)
189.ENDIF
190
191.INCLUDE : target.mk
180.ELIF "$(COMNAME)"=="sunpro5"
181SHL1VERSIONMAP=cc5_solaris_sparc.map
182.ELIF "$(GUI)$(COMNAME)"=="OS2gcc3"
183SHL1VERSIONMAP=gcc3os2.map
184.ELSE
185SHL1VERSIONMAP=gcc3.map
186.ENDIF
187
188# --- Targets ------------------------------------------------------
189
190.IF "$(diag)"!=""
191CFLAGS += -DDIAG=$(diag)
192.ENDIF
193
194.INCLUDE : target.mk