makefile.mk (3e956ccd) makefile.mk (5023a793)
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

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

19#
20#**************************************************************
21
22PRJ=..$/..
23PRJNAME=winaccessibility
24TARGET=UAccCOM
25
26# --- Settings -----------------------------------------------------
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

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

19#
20#**************************************************************
21
22PRJ=..$/..
23PRJNAME=winaccessibility
24TARGET=UAccCOM
25
26# --- Settings -----------------------------------------------------
27.IF "$(GUI)" == "WNT" && "$(DISABLE_ATL)"==""
28PROF_EDITION=TRUE
29.ENDIF
27.IF "$(GUI)"!="WNT" || "$(DISABLE_ATL)"!=""
28all:
29 @echo "$TARGET will not be built because GUI='$(GUI)' and DISABLE_ATL='$(DISABLE_ATL)'"
30.ELSE
30
31
32PROF_EDITION=TRUE
31.INCLUDE : settings.mk
32
33.INCLUDE : settings.mk
34
33.IF "$(GUI)" == "WNT" && "$(DISABLE_ATL)"==""
34
35VERSIONOBJ=
36LIBTARGET=NO
37USE_DEFFILE=YES
38UWINAPILIB=
39
40INCPRE+=$(foreach,i,$(ATL_INCLUDE) -I$(i)) \
41 -I$(MISC) \
42

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

116
117SHL1OBJS=$(SLOFILES)
118SHL1DEF=$(TARGET).def
119SHL1RES=$(RES)/$(TARGET).res
120
121DEF1NAME= $(TARGET)
122#DEF1EXPORTFILE= exports.dxp
123
35VERSIONOBJ=
36LIBTARGET=NO
37USE_DEFFILE=YES
38UWINAPILIB=
39
40INCPRE+=$(foreach,i,$(ATL_INCLUDE) -I$(i)) \
41 -I$(MISC) \
42

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

116
117SHL1OBJS=$(SLOFILES)
118SHL1DEF=$(TARGET).def
119SHL1RES=$(RES)/$(TARGET).res
120
121DEF1NAME= $(TARGET)
122#DEF1EXPORTFILE= exports.dxp
123
124.ENDIF
125
126# --- Targets ----------------------------------
127.INCLUDE : target.mk
128
129ALLTAR : \
130 $(MISC)/$(TARGET).manifest \
131
132$(MISC)/$(TARGET).manifest: $(BIN)$/$(TARGET)$(DLLPOST)
133 cat *.rgs > $(MISC)$/$(TARGET).rgs
134 mt.exe -rgs:$(MISC)$/$(TARGET).rgs -tlb:$(MISC)$/$(TARGET).tlb -dll:$(TARGET).dll -out:$(MISC)$/$(TARGET).manifest
135 mt.exe -manifest $(MISC)$/$(TARGET).manifest -outputresource:$(BIN)$/$(TARGET)$(DLLPOST)\;\#97
124# --- Targets ----------------------------------
125.INCLUDE : target.mk
126
127ALLTAR : \
128 $(MISC)/$(TARGET).manifest \
129
130$(MISC)/$(TARGET).manifest: $(BIN)$/$(TARGET)$(DLLPOST)
131 cat *.rgs > $(MISC)$/$(TARGET).rgs
132 mt.exe -rgs:$(MISC)$/$(TARGET).rgs -tlb:$(MISC)$/$(TARGET).tlb -dll:$(TARGET).dll -out:$(MISC)$/$(TARGET).manifest
133 mt.exe -manifest $(MISC)$/$(TARGET).manifest -outputresource:$(BIN)$/$(TARGET)$(DLLPOST)\;\#97
134
135.ENDIF # "$(GUI)"!="WNT" || "$(DISABLE_ATL)"!=""
136