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.
43 lines
899 B
43 lines
899 B
!ifndef RPC
|
|
!error - You forgot to set your build environment
|
|
!endif
|
|
|
|
DOS=1
|
|
|
|
!include ..\rules.mk
|
|
|
|
OBJS = \
|
|
close.obj \
|
|
create.obj \
|
|
globals.obj \
|
|
open.obj \
|
|
setval.obj \
|
|
queryval.obj \
|
|
regutil.obj \
|
|
|
|
# --------------------------------------------------------------------
|
|
# These are the targets required by the build process.
|
|
|
|
all : $(TARGETDIR)\rpcreg.lib \
|
|
regtest.exe
|
|
|
|
clobber ::
|
|
-del $(TARGETDIR)\rpcreg.lib 2> nul
|
|
|
|
tree :
|
|
|
|
depend :
|
|
$(INCLUDES) $(INCLUDESFLAGS) ..\*.c > depend.mk
|
|
|
|
# --------------------------------------------------------------------
|
|
# Local targets
|
|
|
|
$(TARGETDIR)\rpcreg.lib : $(OBJS)
|
|
-del $@ 2> nul
|
|
$(LIBRARIAN) $(LIBFLAGS) $@ $(OBJS);
|
|
|
|
regtest.exe: $(TARGETDIR)\rpcreg.lib regtest.obj
|
|
$(LINK) $(LINKFLAGS) /STACK:16384 /nod /nologo /co regtest.obj,,,$(DOS_ROOT)\lib\llibce+$(TARGETDIR)\rpcreg;
|
|
|
|
!include "depend.mk"
|
|
|