#
#                oooooooooo.
#                `888'   `Y8b
#                 888     888  .ooooo.    oooooooo  .ooooo.
#                 888oooo888' d88' `88b  d'""7d8P  d88' `88b
#                 888    `88b 888   888    .d8P'   888   888
#                 888    .88P 888   888  .d8P'  .P 888   888
#                o888bood8P'  `Y8bod8P' d8888888P  `Y8bod8P'
#                           _
#                          /_\     |    _  _ | _ ._
#                         /   \  \_||_|(_|(_||(/_|
#                                       _| _|
#                     Microsoft Windows 95/98/NT Version
#
#  Copyright (c) 1994-1999 by Dan Higdon, Tim Little, and Chuck Walbourn
#
#
#
# This file and all associated files are subject to the terms of the
# GNU Lesser General Public License version 2 as published by the
# Free Software Foundation (http://www.gnu.org).   They remain the
# property of the authors: Dan Higdon, Tim Little, and Chuck Walbourn.
# See LICENSE.TXT in the distribution for a copy of this license.
#
# THE AUTHORS MAKE NO WARRANTIES, EXPRESS OR IMPLIED, AS TO THE CORRECTNESS
# OF THIS CODE OR ANY DERIVATIVE WORKS WHICH INCORPORATE IT.  THE AUTHORS
# PROVIDE THE CODE ON AN "AS-IS" BASIS AND EXPLICITLY DISCLAIMS ANY
# LIABILITY, INCLUDING CONSEQUENTIAL AND INCIDENTAL DAMAGES FOR ERRORS,
# OMISSIONS, AND OTHER PROBLEMS IN THE CODE.
#
#
#
#                        http://www.mythos-engine.org/
#
#
#
# Created by Dan Higdon
#
# makefile - Bozo Test Application
#
#

#
#
#                               Variables
#
#

!if "$(DEBUG)" == ""
DEBUG = NO
!endif

!if "$(THREAD)" == ""
THREAD=YES
!endif

!if "$(MYTH95ROOT)" == ""
MYTH95ROOT = \MythOS95
!endif

INCPATH = ;..\inc;..\..\inc;$(MYTH95ROOT)\inc;
LIBPATH = ;..\..\obj;$(MYTH95ROOT)\lib;

#Ŀ
# File specific variables                                                  
#

LIBS = bozo.lib ivory.lib user32.lib

EXE = bzpp

OBJS = bzpp.obj\
resource.res

#Ŀ
# First target                                                             
#

all: setstden $(EXE).exe

#Ŀ
# Standard make include                                                    
#

!include $(MYTH95ROOT)\inc\make.inc

#
#
#                                 Rules
#
#

#--- .c, .cpp, .asm setup in standard include ---

#
#
#                              Dependancies
#
#

#Ŀ
# Executable                                                               
#

$(EXE).exe:   $(OBJS)
#   $(LINK) $(LINKOPTS) /OUT:$* /subsystem:windows,4 @<<
   $(LINK) $(LINKOPTS) /OUT:$*.exe @<<
   $(OBJS) $(LIBS)
<<

clean:
   del *.obj
   del *.res
   del *.err
   del *.lst
   del *.ilk
   del *.pdb

# End of makefile 

