blob: 85d5f44d7c815452f94b64cf934b5fc96ece9863 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
!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"
|