home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 January
/
Chip_1997-01_cd.bin
/
ms95
/
disk23
/
dir02
/
f011700.re_
/
f011700.re
Wrap
Text File
|
1996-04-02
|
3KB
|
98 lines
#----------------------------------------------------------------------
#
# Make Include File For MicroStation File Extensions
#
# Current Revision:
# $Workfile: msfilext.mki $
# $Revision: 6.2 $ $Date: 09 Aug 1995 18:20:00 $
#
# Copyright 1985-95, Bentley Systems, Inc.
#
# Limited permission is hereby granted to reproduce and modify this
# copyrighted material provided that the resulting code is used only in
# conjunction with Bentley Systems products under the terms of the
# license agreement provided therein, and that this notice is retained
# in its entirety in any such reproduction or modification.
#
#----------------------------------------------------------------------
%if !__msfilextMKI__
__msfilextMKI__ = 1
#-----------------------------------------------------------------------
#
# Unix File Extensions
#
#-----------------------------------------------------------------------
%if UNIX
# Object file extension
oext = .o
# Lib file extension
libext = .a
# executable program extension
exeext =
#-----------------------------------------------------------------------
#
# PC File Extensions
#
#-----------------------------------------------------------------------
%elif MSDOS
oext = .obj
libext = .lib
exeext = .exp
# Protected Mode executable file extension
pmExt = .exp
#-----------------------------------------------------------------------
#
# VAX VMS File Extensions
#
#-----------------------------------------------------------------------
%elif VAX
oext = .obj
libext = .olb
exeext = .exe
#-----------------------------------------------------------------------
#
# Macintosh File Extensions
#
#-----------------------------------------------------------------------
%elif MACINTOSH
oext = .o
libext = .o
exeext =
#-----------------------------------------------------------------------
#
# Windows NT File Extensions
#
#-----------------------------------------------------------------------
%elif winNT
oext = .obj
libext = .lib
exeext = .exe
#-----------------------------------------------------------------------
#
# OS/2 File Extensions
#
#-----------------------------------------------------------------------
%elif os2 /* OS/2 */
oext = .obj
libext = .lib
exeext = .exe
%endif # END OF PLATFORM SPECIFIC DEFINITIONS
%endif # !__msfilextMKI__