mirror of https://github.com/lianthony/NT4.0
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.
50 lines
1.2 KiB
50 lines
1.2 KiB
# --------------------------------------------------------------------
|
|
# --------------------------------------------------------------------
|
|
#
|
|
# Microsoft RPC
|
|
# Copyright(c) Microsoft Corp., 1994
|
|
#
|
|
# --------------------------------------------------------------------
|
|
# --------------------------------------------------------------------
|
|
#
|
|
# File : makefile.
|
|
#
|
|
# Title : Makefile for the DOS perf common library
|
|
#
|
|
# History :
|
|
# --------------------------------------------------------------------
|
|
|
|
!ifndef RPC
|
|
!error - You forgot to set your build environment
|
|
!endif
|
|
|
|
MAC=1
|
|
|
|
!include ..\..\rules.mk
|
|
|
|
OBJS = \
|
|
io.obj \
|
|
command.obj \
|
|
system.obj
|
|
|
|
# --------------------------------------------------------------------
|
|
# These are the targets required by the build process.
|
|
|
|
all : $(RPC)\perf\lib\mac\common.lib
|
|
|
|
tree :
|
|
|
|
depend :
|
|
$(INCLUDES) $(INCLUDESFLAGS) ..\*.c > depend.mk
|
|
|
|
# --------------------------------------------------------------------
|
|
# Targets
|
|
|
|
$(RPC)\perf\lib\mac\common.lib: $(OBJS)
|
|
del $@ 2>nul
|
|
$(LIBRARIAN) $(LIBFLAGS) -out:$@ $(OBJS)
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
!include "depend.mk"
|
|
|