Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

124 lines
2.6 KiB

!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=obj
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;..\..\client; \
$(BASEDIR)\private\ntos\w32\ntgdi\inc
!IFNDEF MSC_WARNING_LEVEL
MSC_WARNING_LEVEL = -W3
!ENDIF
MSC_WARNING_LEVEL = $(MSC_WARNING_LEVEL) -WX
!IFNDEF MSC_OPTIMIZATION
MSC_OPTIMIZATION = /Oxs
!ENDIF
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
!IFDEF OPENGL_95
C_DEFINES=$(C_DEFINES) -D_WIN95_
ASM_DEFINES=$(ASM_DEFINES) /D_WIN95_=1
!ENDIF
INCLUDES=$(INCLUDES);..\..\mcd\inc
C_DEFINES=$(C_DEFINES) -D_MCD_
#
# _CLIENTSIDE_ is defined for client implementaions (WinNT and Win95)
#
C_DEFINES=$(C_DEFINES) -D_GDI32_ -DNT -D_CLIENTSIDE_ -DGL_METAFILE
SOURCES=debug.c \
debugint.c \
pixelfmt.c \
wglsup.c \
dispatch.c \
genaccum.c \
genattri.c \
genci.c \
genclear.c \
gencx.c \
gendirty.c \
genimp.c \
genline.c \
genaline.c \
genpick.c \
genpxapi.c \
genrgb.c \
genspan.c \
genpoly.c \
genaccel.c \
gendepth.c \
genzippy.c \
mcdcx.c \
mcddepth.c
PRECOMPILED_INCLUDE = precomp.h
PRECOMPILED_PCH = precomp.pch
PRECOMPILED_OBJ = precomp.obj