You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ap...@apache.org on 2006/12/12 17:36:09 UTC

svn commit: r486220 - /harmony/enhanced/classlib/trunk/depends/build/defines.mak

Author: apetrenko
Date: Tue Dec 12 08:36:08 2006
New Revision: 486220

URL: http://svn.apache.org/viewvc?view=rev&rev=486220
Log:
TARGETOS can be defined from the makefile

Modified:
    harmony/enhanced/classlib/trunk/depends/build/defines.mak

Modified: harmony/enhanced/classlib/trunk/depends/build/defines.mak
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/depends/build/defines.mak?view=diff&rev=486220&r1=486219&r2=486220
==============================================================================
--- harmony/enhanced/classlib/trunk/depends/build/defines.mak (original)
+++ harmony/enhanced/classlib/trunk/depends/build/defines.mak Tue Dec 12 08:36:08 2006
@@ -17,7 +17,10 @@
 APPVER=4.0 #Default Windows version
 !endif
 
-TARGETOS=WIN95
+!ifndef TARGETOS
+TARGETOS=WIN95 #Compile for Win95 by default
+!endif
+
 _WIN32_IE=0x0500
 SEHMAP = TRUE
 !include <win32.mak>