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.
34 lines
675 B
34 lines
675 B
!ifndef RPC
|
|
!error - You forgot to set your build environment
|
|
!endif
|
|
|
|
WIN32C=1
|
|
|
|
!include ..\rules.mk
|
|
|
|
OBJS = \
|
|
security.obj
|
|
|
|
# --------------------------------------------------------------------
|
|
# These are the targets required by the build process.
|
|
|
|
all : security.dll security.sym
|
|
|
|
clobber ::
|
|
-del security.dll
|
|
|
|
depend :
|
|
$(INCLUDES) $(INCLUDESFLAGS) ..\*.c > depend.mk
|
|
|
|
tree :
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
security.dll : $(OBJS)
|
|
$(LINK) $(LINKFLAGS) -dll -def:rpcssp.def $(OBJS) \
|
|
$(PUBLIC)\lib\i386\rpcrt4.lib \
|
|
$(PUBLIC)\lib\i386\crtdll.lib \
|
|
$(PUBLIC)\lib\i386\kernel32.lib
|
|
|
|
!include "depend.mk"
|
|
|