* fixes for OS/2

This commit is contained in:
Tomas Hajny 1999-06-11 13:31:14 +00:00
parent a13afdbb6f
commit 4975910778

View File

@ -44,6 +44,15 @@ inWinNT=1
endif endif
endif endif
# Detect OS/2 - OS/2 has OS2_SHELL defined
ifndef inlinux
ifndef inWinNT
ifdef OS2_SHELL
inOS2=1
endif
endif
endif
# The extension of executables # The extension of executables
ifdef inlinux ifdef inlinux
EXEEXT= EXEEXT=
@ -71,8 +80,12 @@ endif
# What compiler to use ? # What compiler to use ?
ifndef PP ifndef PP
ifdef inOS2
PP=ppos2$(EXEEXT)
else
PP=ppc386$(EXEEXT) PP=ppc386$(EXEEXT)
endif endif
endif
# Target OS # Target OS
ifndef OS_TARGET ifndef OS_TARGET
@ -182,8 +195,12 @@ endif
ifdef inlinux ifdef inlinux
PPAS=ppas.sh PPAS=ppas.sh
else else
ifdef inOS2
PPAS=ppas.cmd
else
PPAS=ppas.bat PPAS=ppas.bat
endif endif
endif
# The path which is search separated by spaces # The path which is search separated by spaces
ifdef inlinux ifdef inlinux
@ -1012,7 +1029,10 @@ endif
# #
# $Log$ # $Log$
# Revision 1.31 1999-06-10 15:02:08 peter # Revision 1.32 1999-06-11 13:31:14 hajny
# * fixes for OS/2
#
# Revision 1.31 1999/06/10 15:02:08 peter
# * last fixes for 0.99.12 release # * last fixes for 0.99.12 release
# #
# Revision 1.30 1999/06/03 09:36:31 peter # Revision 1.30 1999/06/03 09:36:31 peter