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.
 
 
 
 
 
 

51 lines
1.3 KiB

# --------------------------------------------------------------------
# --------------------------------------------------------------------
#
# Microsoft RPC
# Copyright(c) Microsoft Corp., 1994
#
# --------------------------------------------------------------------
# --------------------------------------------------------------------
#
# File : makefile.
#
# Title : Makefile for the DOS UUIDGEN program.
#
# History :
# --------------------------------------------------------------------
!ifndef RPC
!error - You forgot to set your build environment
!endif
DOS=1
!include ..\rules.mk
OBJS = \
uuidgen.obj \
uuidfmt.obj
# --------------------------------------------------------------------
# These are the targets required by the build process.
all : uuidgen.exe
tree :
copy uuidgen.exe $(RPCDIST)\dos\bin
depend :
$(INCLUDES) $(INCLUDESFLAGS) ..\*.c > depend.mk
# --------------------------------------------------------------------
# Targets
uuidgen.exe: uuidgen.obj $(RPC)\runtime\bin\dos\rpc.lib uuidfmt.obj
$(LINK) $(LINKFLAGS) /stack:4000 /pm:vio uuidgen+uuidfmt,,,\
$(RPC)\runtime\bin\dos\rpc+$(RPC)\ndrmem\dos\rpcndr+$(DOS_LIB)\llibce.lib;
# --------------------------------------------------------------------
!include "depend.mk"