Last change
on this file was 249, checked in by umoeller, 23 years ago |
Build updates, moved files from warpin.
|
-
Property svn:eol-style
set to
CRLF
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
640 bytes
|
Rev | Line | |
---|
[243] | 1 | #
|
---|
| 2 | # make\compile_exe_mt.in:
|
---|
| 3 | #
|
---|
| 4 | # include file for nmake that defines the inference
|
---|
| 5 | # rule for compiling standalone object code from C files.
|
---|
| 6 | # This has been put into this include file because
|
---|
| 7 | # I finally got tired of changing this rule in a
|
---|
| 8 | # dozen makefiles all the time.
|
---|
| 9 | #
|
---|
| 10 | # !include this file only for code that will be in
|
---|
| 11 | # a standalone EXE file. This uses the $(CC_EXE_MT)
|
---|
| 12 | # compiler setup.
|
---|
| 13 | #
|
---|
| 14 |
|
---|
[249] | 15 | !ifndef CC_DLL_MT
|
---|
| 16 | !error CC_DLL_MT is not defined.
|
---|
| 17 | !endif
|
---|
| 18 |
|
---|
[243] | 19 | CC = $(CC_DLL_MT)
|
---|
| 20 |
|
---|
[249] | 21 | OUTPUTDIR = $(PROJECT_OUTPUT_DIR)\dll_mt
|
---|
[243] | 22 |
|
---|
| 23 | !include $(MAKE_INCLUDE_DIR)\_sub_compile.in
|
---|
| 24 |
|
---|
| 25 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.