forked from mikemccormack/ring3k
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.in
128 lines (108 loc) · 2.62 KB
/
Makefile.in
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#
# ring3k - a user mode kernel for windows executables
#
# Copyright 2006-2009 Mike McCormack
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
#
srcdir = @srcdir@
VPATH = @srcdir@
prefix = @prefix@
bindir = ${prefix}/bin
INSTALL = @INSTALL@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
LAUNCH_SCRIPT = ring3k
SETUP_SCRIPT = ring3k-setup
RM = rm -f
SUBDIRS = \
libudis86 \
libmspack \
libntreg \
kernel \
programs \
tests \
tools \
regedit \
unpack
INSTALLSUBDIRS = \
kernel \
programs \
unpack
all: $(SUBDIRS) $(LAUNCH_SCRIPT) $(SETUP_SCRIPT)
.PHONY: \
$(SUBDIRS)
all \
clean \
distclean \
test
$(LAUNCH_SCRIPT): ring3k.in
cp -f $< $@
$(SETUP_SCRIPT): ring3k-setup.in
cp -f $< $@
stat:
cd kernel && make stat
clean::
$(RM) $(LAUNCH_SCRIPT) $(SETUP_SCRIPT)
distclean: clean
rm -rf drive
rm -rf config.status config.log autom4te.cache Make.rules
find . -name Makefile -exec rm {} \;
install:: $(LAUNCH_SCRIPT) $(SETUP_SCRIPT)
mkdir -p $(DESTDIR)$(bindir)
$(INSTALL_SCRIPT) $(INSTALL_FLAGS) $(LAUNCH_SCRIPT) $(DESTDIR)$(bindir)
$(INSTALL_SCRIPT) $(INSTALL_FLAGS) $(SETUP_SCRIPT) $(DESTDIR)$(bindir)
uninstall::
$(RM) $(DESTDIR)$(bindir)/$(LAUNCH_SCRIPT)
$(RM) $(DESTDIR)$(bindir)/$(SETUP_SCRIPT)
TESTLIST = \
completion \
device \
event \
file \
font \
gdi \
heap \
job \
mailslot \
mutant \
object \
port \
process \
reg \
section \
seh \
sema \
syscall \
thread \
timer \
token \
user \
virtual \
wine-port
test: all
@echo "Thread tracing tests"
for tc in $(TESTLIST) ; do echo $$tc ; ./runtest $$tc || exit 1 ; done
help:
@echo "Available targets are:"
@echo
@echo " all Build ring3k and tests (default)"
@echo " clean Clean temporary files and executables"
@echo " distclean Clean everything"
@echo " install Install"
@echo " stat Display some statistics about the project"
@echo " test Build and run regression tests (requires win2k.iso)"
@echo " uninstall Remove installed files"
@echo
@MAKE_RULES@