Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « security « tools « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: feb1b8dcbe238ad57c7381f951c5bac42fabb3e4 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
thisdir = tools/security
SUBDIRS = 
DIST_ONLY_SUBDIRS = certview
include ../../build/rules.make

LOCAL_MCS_FLAGS = /r:$(topdir)/class/lib/Mono.Security.dll

SECURITY_PROGRAMS = secutil.exe cert2spc.exe sn.exe MakeCert.exe chktrust.exe signcode.exe setreg.exe certmgr.exe

DISTFILES = \
	AssemblyInfo.cs	\
	cert2spc.cs	\
	MakeCert.cs	\
	README		\
	secutil.cs	\
	sn.cs		\
	chktrust.cs	\
	signcode.cs	\
	setreg.cs	\
	certmgr.cs	\
	StrongNameManager.cs

all-local: $(SECURITY_PROGRAMS)

install-local: $(SECURITY_PROGRAMS)
	$(MKINSTALLDIRS) $(DESTDIR)$(prefix)/bin
	for p in $(SECURITY_PROGRAMS) ; do \
	    $(INSTALL_BIN) $$p $(DESTDIR)$(prefix)/bin ; \
	done

uninstall-local:
	for p in $(SECURITY_PROGRAMS) ; do \
	    rm -f $(DESTDIR)$(prefix)/bin/$$p ; \
	done

test-local:

run-test-local:

clean-local:
	rm -f *.exe *.pdb

dist-local: dist-default

sn.exe: sn.cs StrongNameManager.cs AssemblyInfo.cs
	$(CSCOMPILE) $^

%.exe: %.cs AssemblyInfo.cs
	$(CSCOMPILE) $^