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.
37 lines
704 B
37 lines
704 B
!ifndef RPC
|
|
!error - You forgot to set your build environment
|
|
!endif
|
|
|
|
WIN=1
|
|
|
|
!include ..\rules.mk
|
|
|
|
CFLAGS=$(CFLAGS) -ASw
|
|
|
|
OBJS = \
|
|
security.obj
|
|
|
|
# --------------------------------------------------------------------
|
|
# These are the targets required by the build process.
|
|
|
|
all : security.dll
|
|
|
|
clobber ::
|
|
-del security.dll
|
|
|
|
depend :
|
|
$(INCLUDES) $(INCLUDESFLAGS) ..\*.c > depend.mk
|
|
|
|
tree :
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
security.dll : $(OBJS)
|
|
$(LINK) $(LINKFLAGS) $(**: =+),$@,$*.map,\
|
|
$(WIN_LIB)\sdllcew+$(WINSDK_LIB)\libw+$(RPC)\common\lib\wnetapi,\
|
|
rpcssp.def;
|
|
$(RC) $(RCFLAGS) $@
|
|
$(MAPSYM) $*.map
|
|
|
|
!include "depend.mk"
|
|
|