!IF 0

Copyright (c) 1989  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:

    Steve Wood (stevewo) 12-Apr-1989

Revision History:

!ENDIF

#
# The MAJORCOMP and MINORCOMP variables are defined
# so that $(MAJORCOMP)$(MINORCOMP)filename can be used in
# cross compiling to provide unique filenames in a flat namespace.
#

MAJORCOMP=opengl
MINORCOMP=generic

#
# The TARGETNAME variable is defined by the developer.  It is the name of
# the target (component) that is being built by this makefile.  It
# should NOT include any path or file extension information.
#

TARGETNAME=glgen
TARGETPATH=$(BASEDIR)\public\sdk\lib
TARGETTYPE=LIBRARY

#
# The INCLUDES variable specifies any include paths that are specific to
# this source directory.  Separate multiple directory paths with single
# semicolons.  Relative path specifications are okay.
#

INCLUDES=..\inc;..\..\inc;..\..\..\inc;..\..\..\..\inc

NTLEGO=1
NTPROFILEINPUT=yes

MIPS_OPTIONS=-float -Olimit 2000 -nodwalign

!IFNDEF NTDEBUGTYPE
NTDEBUGTYPE=coff
!ENDIF

#
# Force C calling convention (caller pops arguments off the stack).
#

386_STDCALL=0

!IFDEF OPENGL2
DLLENTRY=DllInitialize
LINKLIBS=$(BASEDIR)\public\sdk\lib\*\oglsrv.lib $(BASEDIR)\public\sdk\lib\*\samplegl.lib
C_DEFINES=$(C_DEFINES) -DTREE2=1
!ENDIF

C_DEFINES=$(C_DEFINES) -DNT

SOURCES=debug.c     \
        dispatch.c  \
        genaccum.c  \
        genattri.c  \
        genci.c     \
        genclear.c  \
        gencx.c     \
        genimp.c    \
        genline.c   \
        genpick.c   \
        genpxapi.c  \
        genrgb.c    \
        genspan.c   \
        genpoly.c   \
        genaccel.c
