makefile.mk (7871dc3e) makefile.mk (b597708b)
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

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

31NO_DEFAULT_STL=TRUE
32DYNAMIC_CRT=
33USE_DEFFILE=TRUE
34MINGW_NODLL=YES
35
36.INCLUDE : settings.mk
37
38CFLAGS+=-DUNICODE -D_UNICODE
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

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

31NO_DEFAULT_STL=TRUE
32DYNAMIC_CRT=
33USE_DEFFILE=TRUE
34MINGW_NODLL=YES
35
36.INCLUDE : settings.mk
37
38CFLAGS+=-DUNICODE -D_UNICODE
39.IF "$(USE_SYSTEM_STL)" != "YES"
40CFLAGS+=-D_STLP_USE_STATIC_LIB
41.ENDIF
42
43# --- Files --------------------------------------------------------
44
45.IF "$(GUI)"=="WNT"
46
47UWINAPILIB=
48
49SLOFILES = $(SLO)$/msihelper.obj\

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

62
63SHL1STDLIBS= $(KERNEL32LIB)\
64 $(USER32LIB)\
65 $(ADVAPI32LIB)\
66 $(SHELL32LIB)\
67 $(MSILIB)\
68 $(SHLWAPILIB)
69
39
40# --- Files --------------------------------------------------------
41
42.IF "$(GUI)"=="WNT"
43
44UWINAPILIB=
45
46SLOFILES = $(SLO)$/msihelper.obj\

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

59
60SHL1STDLIBS= $(KERNEL32LIB)\
61 $(USER32LIB)\
62 $(ADVAPI32LIB)\
63 $(SHELL32LIB)\
64 $(MSILIB)\
65 $(SHLWAPILIB)
66
70.IF "$(USE_SYSTEM_STL)" != "YES"
71SHL1STDLIBS+=$(LIBSTLPORTST)
72.ENDIF
73
74SHL1LIBS = $(SLB)$/$(TARGET).lib
75
76SHL1TARGET = $(TARGET)
77SHL1IMPLIB = i$(TARGET)
78
79SHL1DEF = $(MISC)$/$(SHL1TARGET).def
80SHL1DEPN = $(SLB)$/$(TARGET).lib
81SHL1BASE = 0x1c000000
82DEF1NAME=$(SHL1TARGET)
83DEF1EXPORTFILE=exports.dxp
84
85.ENDIF
86
87# --- Targets --------------------------------------------------------------
88
89.INCLUDE : target.mk
90
91# -------------------------------------------------------------------------
92
67SHL1LIBS = $(SLB)$/$(TARGET).lib
68
69SHL1TARGET = $(TARGET)
70SHL1IMPLIB = i$(TARGET)
71
72SHL1DEF = $(MISC)$/$(SHL1TARGET).def
73SHL1DEPN = $(SLB)$/$(TARGET).lib
74SHL1BASE = 0x1c000000
75DEF1NAME=$(SHL1TARGET)
76DEF1EXPORTFILE=exports.dxp
77
78.ENDIF
79
80# --- Targets --------------------------------------------------------------
81
82.INCLUDE : target.mk
83
84# -------------------------------------------------------------------------
85