blob: 33b512572f33f6afa0e01ad0af4ea8859920a495 (
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
38
|
#
# Program: CACLS (Control ACLs)
#
# Synopsis: This program provides command line functionality similar to
# the File Manager's Security Editor
#
# History: Jan-94 Created DaveMont
#
MAJORCOMP=sdktools
MINORCOMP=cacls
TARGETNAME=cacls
TARGETPATH=obj
TARGETTYPE=PROGRAM
TARGETLIBS=$(BASEDIR)\public\sdk\lib\*\user32.lib
# so will be built unicode
C_DEFINES=-DWIN32=300 -DFLAT -DUNICODE -D_UNICODE
BLDCRT=1
SOURCES=accacc.cxx \
account.cxx \
daclwrap.cxx \
dumpsec.cxx \
fileenum.cxx \
filesec.cxx \
t2.cxx \
cacls.rc
386_STDCALL=0
UMTYPE=console
NTTARGETFILE0=caclsmsg.h
|