# Makefile
#
#{{IS_NOTE
#
# Authors:	Tom M. Yeh
# Contributors:
# Create Date:	10/3/0 03:52PM
# $Header: /cvsroot/jdk/samples/starter/Makefile,v 1.1 2000/10/12 02:21:44 henrichen Exp $
# Purpose:	Makefile of hello
# Description:
#
#}}IS_NOTE
#
# Copyright (C) 2000 Infoshock Corporation. All Rights Reserved.
#
#{{IS_RIGHT
#}}IS_RIGHT
#

#/////////////////////////////////////////////////
B_TARGET := starter

#/////////////////////////////////////////////////
#export NDEBUG := 1
#Define NDEBUG when it is time to make a commercial version

#/////////////////////////////////////////////////
#export __WinCE__ := 1
	#Define __WinCE__ if the target platform is WinCE
	#Undefine it for other platforms.

ifdef __WinCE__
 export PRE_RCFLAGS := -l 0x409
	# language of RC
	#english=0x409

 export CEVER_MAJOR=3
 export CEVER_MINOR=00
 export PLATFORM:=MS Pocket Pc
endif

#/////////////////////////////////////////////////
export __LITTLE_ENDIAN__ := 1234
#export __BIG_ENDIAN__ := 4321
	#select one of the endian

#/////////////////////////////////////////////////
export __PLATFORM__ := __i486__
	# __i486__: Intel i486 or above
	# __ARM__: ARM

#/////////////////////////////////////////////////
TOPDIR:=../..

#/////////////////////////////////////////////////
include $(TOPDIR)/include/Rules.make
