!IF 0
/*++

Copyright (c) 2011 Vasily Tarasov. All rights reserved.

Module Name:

    sources

Abstract:

    sources file for 'monarr' project.

Author:

    Vasily Tarasov (vtarasov@zoneos.com)    Jan 25, 2011

Revision History:

    Jan 25, 2011 Vasily Tarasov (vtarasov@zoneos.com)
      - Created.

--*/
!ENDIF

TARGETNAME = monarr    ## Exe name
TARGETTYPE = PROGRAM   ## Indicates that it will be EXE
UMTYPE     = console   ## Indicates that it will be console program
UMENTRY    = wmain     ## Unicode entry point

## /W4 - set warning level to maximum possible value.
## /WX - treat warnings as errors.
MSC_WARNING_LEVEL = /W4 /WX

## Linking with msvcrt.dll
USE_MSVCRT = 1

TARGETLIBS = \
    $(SDK_LIB_PATH)\user32.lib

## Compilation definition.
C_DEFINES = $(C_DEFINES) \
    -DUNICODE -D_UNICODE

## List of project sources.
SOURCES = \
    main.c
