Leaked source code of windows server 2003
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.
|
|
##############################################################################
## Copyright (c) 1993-1999 Microsoft Corporation
##
## Makefile for YACC compiler generator
## History:
## Oct-30-1991 : create for os2 and nt build process
## May-21-1992 : added C7 support and cleaned up.
##############################################################################
!IFDEF NTMAKEENV
!INCLUDE $(NTMAKEENV)\makefile.def
!ELSE # NTMAKEENV
!ifndef RPC !error - You forgot to set your build environment !endif
BASEDIR = $(RPC)\midlnew
!include rules.mk
##############################################################################
# general defines
##############################################################################
EXENAME = midleb.exe
LIBNAME = $(CCPLR)\lib\$(LLIBCE) $(IMPORT)\os212\lib\os2.lib $(OLDNAMES) LINKFLAGS = /pm:vio $(CV) /NOD
ALLYACCOBJS = $(OBJOS2)\ebase.obj
##############################################################################
# targets of interest
##############################################################################
all : prolog $(EXENAME)
clean : - erase $(OBJOS2)\*.obj
clobber : clean - erase $(EXENAME)
tree : @echo Tree Not Implemented for this branch
depend : -$(INCLUDES) -l -I. -C=c *.c 2>nul | $(SED) -e "s@[a-z0-9]*.obj@$$(OBJOS2)\\&@g" > depend.mk echo depend.mk was rebuilt, please reinvoke NMAKE
prolog : - mkdir $(OBJDIR) - mkdir $(OBJOS2)
$(EXENAME) : $(ALLYACCOBJS) $(LINK) $(LINKFLAGS) @<<midl.tmp $(OBJOS2)\ebase.obj $(EXENAME) NUL.MAP $(LIBNAME)
<<KEEP ##############################################################################
!include depend.mk
!endif # NTMAKEENV
|