-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile.vac
More file actions
65 lines (56 loc) · 2.01 KB
/
Copy pathmakefile.vac
File metadata and controls
65 lines (56 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# makefile
# Erstellt von IBM WorkFrame/2 MakeMake um 12:18:28 am 2 Mai 1998
#
# Diese Make-Datei enth„lt folgende Aktionen:
# Compile::C++ Compiler
# Link::Linker
.SUFFIXES:
.SUFFIXES: \
.c .obj
# /M<p|s|c|t> /Mp: Set the default calling convention to _Optlink.
# Default: /Mp
# /Ms: Set the default calling convention to _System.
# /Mc: Set the default calling convention to __cdecl.
# /Mt: Set the default linkage to __stdcall.
# /Gd<[+]|-> /Gd+: Use the version of the runtime library that is
# dynamically linked.
# /Gd-: Use the version of the runtime library that is
# statically linked. Default: /Gd-
# /Gm<[+]|-> Link with multithread runtime libraries. Default: /Gm-
# /Ge<[+]|-> /Ge+: Use the version of the runtime library that assumes an
# EXE is being built.
# /Ge-: Use the version of the runtime library that assumes a
# DLL is being built. Default: /Ge+
# /R<e|n> /Re: Produce code to run with a complete runtime
# environment. Default: /Re
# /Rn: Produce code to run with no runtime environment.
ICCOPTSRT=/Ss /Q /Mp /Gm+ /Gd- /Ge- /G5 /C
ICCOPTSSS=/Ss /Q /Mp /Rn /Gd- /Ge- /G5 /C
.c.obj:
@echo " Compile::C++ Compiler "
icc.exe $(CDB) $(ICCOPTSSS) %s
# icc.exe /Ss $(CDB) /Q /Rn /Mp /Gd- /Ge- /G5 /C %s
{D:\work\c\buttondll}.c.obj:
@echo " Compile::C++ Compiler "
icc.exe $(CDB) $(ICCOPTSSS) %s
all: \
.\pmctlspp.dll
.\pmctlspp.dll: \
.\pmctlspp.obj \
.\BtnDlgProc.obj \
.\ComboDlgProc.obj \
.\EntryDlgProc.obj \
{$(LIB)}pmctlspp.def
@echo " Link::Linker "
icc.exe @<<
/Q /B" $(LDB) /noe"
/Fepmctlspp.dll $(TDB)
/Fmpmctlspp.map
pmctlspp.def
.\pmctlspp.obj
.\BtnDlgProc.obj
.\ComboDlgProc.obj
.\EntryDlgProc.obj
<<
!include "makefile.DEP"