# -------------------------------------------------------------------- # -------------------------------------------------------------------- # # Microsoft RPC # Copyright(c) Microsoft Corp., 1994 # # -------------------------------------------------------------------- # -------------------------------------------------------------------- # # File : makefile. # # Title : Makefile for the Win16 perf common library # # History : # -------------------------------------------------------------------- !ifndef RPC !error - You forgot to set your build environment !endif WIN=1 !include ..\..\rules.mk # Use application (not DLL) flags) CFLAGS=$(CFLAGS:GD=GA) -AL OBJS = \ io.obj \ command.obj \ system.obj # -------------------------------------------------------------------- # These are the targets required by the build process. all : $(RPC)\perf\lib\win\common.lib tree : depend : $(INCLUDES) $(INCLUDESFLAGS) ..\*.c > depend.mk # -------------------------------------------------------------------- # Targets $(RPC)\perf\lib\win\common.lib: $(OBJS) del $@ 2>nul $(LIBRARIAN) $(LIBFLAGS) $@+$(**: =+) ; # -------------------------------------------------------------------- !include "depend.mk"