* updated for linux

This commit is contained in:
peter 1999-06-11 12:51:28 +00:00
parent dc8c1c62bd
commit 9633cd798c
2 changed files with 12 additions and 4 deletions

View File

@ -40,7 +40,7 @@ endif
# Linux demo's
ifeq ($(OS_TARGET),linux)
override EXEOBJECTS+=mandel
override EXEOBJECTS+=mandel samegame
endif
@ -131,7 +131,10 @@ installdemo:
#
# $Log$
# Revision 1.5 1999-06-08 18:28:21 peter
# Revision 1.6 1999-06-11 12:51:28 peter
# * updated for linux
#
# Revision 1.5 1999/06/08 18:28:21 peter
# * fixes for 0.99.12 release
#
# Revision 1.4 1999/05/27 21:36:32 peter

View File

@ -25,7 +25,9 @@ INTERFACE
MouseAPI undef : RTL unit MsMouse. API not required, but doesn't work under
Linux }
{$UNDEF MouseAPI}
{$ifdef linux}
{$define MouseAPI}
{$endif}
TYPE CHARSET=SET OF CHAR;
@ -454,7 +456,10 @@ BEGIN
END.
{
$Log$
Revision 1.1 1999-06-01 19:24:33 peter
Revision 1.2 1999-06-11 12:51:29 peter
* updated for linux
Revision 1.1 1999/06/01 19:24:33 peter
* updates from marco
}