!IF 0
########################################################################

Copyright (c) 1991  Microsoft Corporation

Module Name:

    sources.

Abstract:

    This file specifies the target component being built and the list of
    sources files needed to build that component.  Also specifies optional
    compiler switches and libraries that are unique for the component being
    built.


Author:

    Babak Jahromi (babakj)

Issues:
        -Solidpp usage
        -several .rc files exist and are created by one another
        -.cod files are used (they are just mixed source-object listing!
          so don't worry about them)
        - RCFLAGS needs -dWINVER_3

###########################################################################
!ENDIF

MAJORCOMP=shell
MINORCOMP=games

# to fire makefile.inc
NTTARGETFILE0 = SUB_ALL

# For Windbg usage
# NTDEBUG=ntsd
# NTDEBUGTYPE=windbg
# 386_OPTIMIZATION=/Od
# MIPS_OPTIMIZATION=-g2
# for Mips? -std

USE_CRTDLL=1


TARGETNAME=sol
TARGETPATH=obj
TARGETTYPE=LIBRARY
TARGETLIBS=
# 386_STDCALL=0

INCLUDES=.

SOURCES=sol.c util.c game.c col.c klond.c undo.c\
        marq.c stat.c cards.c debug.c sol_new.rc

# C_DEFINES=-DWIN32 -DWINVER_3 -DDEBUG
# DEBUG is now set based on DBG var (whether Checked or Free build) in sol.h and sol.rc
C_DEFINES=-DWIN32 -DWINVER_3
# Do we have defines for RC compiler or assembler? they are used in DOS makefile


UMTYPE=windows
UMENTRY=winmain
UMAPPL=sol
UMLIBS=   $(BASEDIR)\public\sdk\lib\*\user32.lib      \
          $(BASEDIR)\public\sdk\lib\*\ntdll.lib       \
          $(BASEDIR)\public\sdk\lib\*\gdi32.lib       \
          $(BASEDIR)\public\sdk\lib\*\pwin32.lib      \
          $(BASEDIR)\public\sdk\lib\*\shell32.lib     \
          $(BASEDIR)\public\sdk\lib\*\crtdll.lib      \
          obj\*\sol.lib \
          obj\*\sol_new.res
