-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMakefile
527 lines (424 loc) · 17.7 KB
/
Makefile
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
.SECONDARY:
#
# What to build
#
# Java sources that are part of the compiler/interpreter
java_sources = $(wildcard src/org/ibex/nestedvm/*.java) $(wildcard src/org/ibex/nestedvm/util/*.java)
# C sources that are part of the compiler/interpreter
mips_sources = crt0.c support_aux.c
mips_asm_sources = support.s
mips2java_root = $(shell pwd)
build = $(mips2java_root)/build
tasks = upstream/tasks
#
# MIPS Settings (don't change these)
#
flags = -march=mips1
MIPS_CC = mips-unknown-elf-gcc
MIPS_CXX = mips-unknown-elf-g++
MIPS_G77 = mips-unknown-elf-g77
MIPS_PC = mips-unknown-elf-gpc
# Be VERY careful about changing any of these as they can break binary
# compatibility and create hard to find bugs
mips_optflags = -O3 \
-mmemcpy \
-ffunction-sections -fdata-sections \
-falign-functions=512 \
-fno-rename-registers \
-fno-schedule-insns \
-fno-delayed-branch \
-freduce-all-givs
MIPS_CFLAGS = $(mips_optflags) $(flags) -I. -Wall -Wno-unused -Werror
MIPS_CXXFLAGS = $(MIPS_CFLAGS)
MIPS_PCFLAGS = $(MIPS_CFLAGS) --big-endian
MIPS_LD = mips-unknown-elf-gcc
MIPS_LDFLAGS= $(flags) --static -Wl,--gc-sections
MIPS_STRIP = mips-unknown-elf-strip
# Java compiler/VM settings
JAVAC = javac -source 1.3 -target 1.3
JAVA = java
ifeq ($(firstword $(JAVAC)),gcj)
JAVAC_NODEBUG_FLAGS = -g0
else
JAVAC_NODEBUG_FLAGS = -g:none
endif
CYGWIN = $(findstring CYGWIN,$(shell uname))
CLASSGEN_PATH = upstream/build/classgen/build
ifneq ($(CYGWIN),)
classpath = $(shell cygpath -wp build:$(CLASSGEN_PATH))
else
classpath = build:$(CLASSGEN_PATH)
endif
GCJ = gcj
EXE_EXT =
#####
java_classes = $(java_sources:src/%.java=build/%.class)
mips_c_objects = $(mips_sources:%.c=build/org/ibex/nestedvm/%.o)
mips_asm_objects = $(mips_asm_sources:%.s=build/org/ibex/nestedvm/%.o)
mips_objects = $(mips_asm_objects) $(mips_c_objects)
usr = $(mips2java_root)/upstream/install
PATH := $(usr)/bin:$(PATH)
export PATH
#
# General Build Stuff
#
all: $(java_classes) $(tasks)/build_libc
ifdef NATIVE_MIPS2JAVA_COMPILER
all: build/mips2java$(EXE_EXT) $(mips_objects)
endif
# HACK: Ensure libc is kept up to date when our mips_objects change
$(tasks)/build_libc: $(mips_objects) $(tasks)/build_extraheaders
$(tasks)/build_extraheaders: upstream/misc/extraheaders.sh
$(tasks)/%:
$(MAKE) -C upstream tasks/$* usr="$(usr)" \
MIPS_CFLAGS="$(filter-out -Werror,$(MIPS_CFLAGS))" \
MIPS_PCFLAGS="$(filter-out -Werror,$(MIPS_PCFLAGS))" \
MIPS_LDFLAGS="$(MIPS_LDFLAGS)"
upstream_clean_%:
$(MAKE) -C upstream clean_$* usr="$(usr)"
#
# Interpreter/Compiler/Runtime Java Compilation
#
# This works around a gcj -C bug
ifeq ($(firstword $(JAVAC)),gcj)
build/org/ibex/nestedvm/util/.Dummy.class:
mkdir -p `dirname $@`
touch $@
$(java_classes): build/org/ibex/nestedvm/util/.Dummy.class
endif
$(java_classes): $(java_sources) $(tasks)/build_git_classgen
$(JAVAC) -classpath "$(classpath)" -d build $(java_sources)
# GCJ Stuff
# FIXME: We're cramming more than we need into the binary here
build/mips2java$(EXE_EXT): $(java_sources) $(java_gen_sources)
@mkdir -p `dirname $@`
$(GCJ) -s -o $@ --main=org.ibex.nestedvm.Compiler $(java_sources) $(java_gen_sources)
#
# MIPS Binary compilation
#
# The nestedvm support library is special, it doesn't a full libc
$(mips_c_objects): build/%.o: src/%.c $(tasks)/build_gcc $(tasks)/build_newlib $(tasks)/build_extraheaders
@mkdir -p `dirname $@`
$(MIPS_CC) $(MIPS_CFLAGS) -c -o $@ $<
# Everything else needs a full libc
build/%.o: src/%.c $(tasks)/build_gcc $(tasks)/build_libc
@mkdir -p `dirname $@`
$(MIPS_CC) $(MIPS_CFLAGS) $($(notdir $*)_CFLAGS) -c -o $@ $<
build/%.o: src/%.s $(tasks)/build_gcc
@mkdir -p `dirname $@`
$(MIPS_CC) -x assembler-with-cpp -c -o $@ $<
tmp/%.s: src/%.c $(tasks)/build_gcc
@mkdir -p `dirname $@`
$(MIPS_CC) $(MIPS_CFLAGS) $($(notdir $*)_CFLAGS) -c -S -o $@ $<
build/%.mips: build/%.o $(tasks)/build_gcc $(tasks)/build_libc
$(MIPS_LD) -o $@ $< $(MIPS_LDFLAGS) $($(notdir $*)_LDFLAGS)
build/%.mips: src/%.cc $(tasks)/build_gcc_step2 $(tasks)/build_libc
@mkdir -p `dirname $@`
$(MIPS_CXX) $(MIPS_CXXFLAGS) $($(notdir $*)_CXXFLAGS) $(MIPS_LDFLAGS) $($(notdir $*)_LDFLAGS) -o $@ $<
build/%.mips: src/%.pas $(tasks)/build_gpc
@mkdir -p `dirname $@`
$(MIPS_PC) $(MIPS_PCFLAGS) $($(notdir $*)_PCFLAGS) $(MIPS_LDFLAGS) $($(notdir $*)_LDFLAGS) -o $@ $<
build/%.mips.stripped: build/%.mips $(tasks)/build_linker
cp $< $@
$(MIPS_STRIP) -s $@
# MIPS Compiler generated class compilation
ifdef DO_JAVASOURCE
build/%.java: build/%.mips build/org/ibex/nestedvm/JavaSourceCompiler.class
$(JAVA) -cp "$(classpath)" org.ibex.nestedvm.Compiler -outformat javasource $(compiler_flags) $($(notdir $*)_COMPILERFLAGS) $(subst /,.,$*) $< > build/$*.java
build/%.class: build/%.java build/org/ibex/nestedvm/Runtime.class
$(JAVAC) $(JAVAC_NODEBUG_FLAGS) -classpath build -d build $<
else
build/%.class: build/%.mips build/org/ibex/nestedvm/ClassFileCompiler.class
$(JAVA) -cp "$(classpath)" org.ibex.nestedvm.Compiler -outformat class -d build $(compiler_flags) $($(notdir $*)_COMPILERFLAGS) $(subst /,.,$*) $<
endif
# General Java Class compilation
build/%.class: src/%.java
$(JAVAC) -classpath build -d build $<
clean:
rm -rf build/tests build/org/ibex/nestedvm *.jar build/mips2java$(EXE_EXT)
#
# env.sh
#
env.sh: Makefile $(tasks)/build_gcc $(tasks)/build_libc build/org/ibex/nestedvm/Compiler.class
@rm -f "$@~"
@echo 'PATH="$(mips2java_root)/build:$(usr)/bin:$$PATH"; export PATH' >> $@~
@echo 'CC=mips-unknown-elf-gcc; export CC' >> $@~
@echo 'CXX=mips-unknown-elf-g++; export CXX' >> $@~
@echo 'AS=mips-unknown-elf-as; export AS' >> $@~
@echo 'AR=mips-unknown-elf-ar; export AR' >> $@~
@echo 'LD=mips-unknown-elf-ld; export LD' >> $@~
@echo 'RANLIB=mips-unknown-elf-ranlib; export RANLIB' >> $@~
@echo 'CFLAGS="$(mips_optflags)"; export CFLAGS' >> $@~
@echo 'CXXFLAGS="$(mips_optflags)"; export CXXFLAGS' >> $@~
@echo 'LDFLAGS="$(MIPS_LDFLAGS)"; export LDFLAGS' >> $@~
@echo 'CLASSPATH=$(mips2java_root)/build:$(mips2java_root)/upstream/build/classgen/build:.; export CLASSPATH' >> $@~
@chmod a+x "$@~"
@mv "$@~" "$@"
@echo "$@ created successfully"
#
# Runtime.jar
#
runtime_classes = Runtime Registers UsermodeConstants util/Seekable
unix_runtime_classes = $(runtime_classes) UnixRuntime util/Platform util/InodeCache
tex.jar: $(mips_objects) $(runtime_classes:%=build/org/ibex/nestedvm/%.class) build/tests/TeX.class
echo -e "Manifest-Version: 1.0\nMain-Class: Tex\n" > .manifest
cp upstream/build/tex/TeX.class build
cd build && jar cfm ../$@ ../.manifest \
$(runtime_classes:%=org/ibex/nestedvm/%.class) \
org/ibex/nestedvm/Runtime\$$*.class \
org/ibex/nestedvm/util/Seekable\$$*.class
runtime.jar: $(runtime_classes:%=build/org/ibex/nestedvm/%.class)
cd build && jar cf ../$@ \
$(runtime_classes:%=org/ibex/nestedvm/%.class) \
org/ibex/nestedvm/Runtime\$$*.class \
org/ibex/nestedvm/util/Seekable\$$*.class
unix_runtime.jar: $(unix_runtime_classes:%=build/org/ibex/nestedvm/%.class)
cd build && jar cf ../$@ \
$(unix_runtime_classes:%=org/ibex/nestedvm/%.class) \
org/ibex/nestedvm/Runtime\$$*.class \
org/ibex/nestedvm/util/Seekable\$$*.class \
org/ibex/nestedvm/UnixRuntime\$$*.class \
org/ibex/nestedvm/util/Platform\$$*.class \
org/ibex/nestedvm/util/Sort*.class
.manifest:
printf "Manifest-Version: 1.0\nMain-Class: org.ibex.nestedvm.RuntimeCompiler\n" > $@
nestedvm.jar: $(java_classes) .manifest
cd build && jar cfm ../$@ ../.manifest $(java_classes:build/%.class=%*.class)
cd $(CLASSGEN_PATH) && jar uf $(mips2java_root)/$@ .
.gcclass_hints: $(java_sources)
sed -n 's/.*GCCLASS_HINT: \([^ ]*\) \([^ ]*\).*/hint:\1:\2/p' $(java_sources) > $@
compact_runtime_compiler.jar: $(java_classes) .manifest $(tasks)/build_git_gcclass .gcclass_hints
mkdir -p tmp/pruned
rm -rf tmp/pruned/*
$(JAVA) -cp \
upstream/build/gcclass/build:upstream/build/gcclass/upstream/bcel-5.2/bcel-5.2.jar \
com.brian_web.gcclass.GCClass \
"$(classpath)" tmp/pruned org.ibex.nestedvm.RuntimeCompiler.main `cat .gcclass_hints`
cd tmp/pruned && jar cfm ../../$@ ../../.manifest .
sizecheck: compact_runtime_compiler.jar
@for c in `find tmp/pruned -name '*.class'|fgrep -v '$$'`; do \
for f in `echo $$c|sed 's,\.class$$,,;'`*.class; do gzip -c $$f; done | wc -c | tr -d '\n'; \
echo -e "\t`echo $$c | sed 's,tmp/pruned/org/ibex,,;s,\.class$$,,;s,/,.,g;'`"; \
done | sort -rn | awk '{ sum += $$1; print } END { print sum,"Total"; }'
# This is only for Brian to use... don't mess with it
rebuild-constants: $(tasks)/build_libc
@mkdir -p `dirname $@`
( \
cat \
src/org/ibex/nestedvm/syscalls.h \
$(usr)/mips-unknown-elf/include/nestedvm/socket.h \
$(usr)/mips-unknown-elf/include/sys/{errno.h,unistd.h,syslimits.h,sysctl.h}; \
$(MIPS_CC) -E -dM $(usr)/mips-unknown-elf/include/sys/fcntl.h | awk '$$2 ~ /^[OF]_/ { print; }'; \
) | ( \
echo "// THIS FILE IS AUTOGENERATED! DO NOT EDIT!"; \
echo "// run \"make rebuild-constants\" if it needs to be updated"; \
echo ""; \
echo "package org.ibex.nestedvm;"; \
echo "public interface UsermodeConstants {"; \
tr '\t' ' ' | sed -n ' \
s/ */ /g; \
s/ *# *define \([A-Z_][A-Za-z0-9_]*\) \([0-9][0-9a-fA-Fx]*\)/ public static final int \1 = \2;/p'; \
echo "}"; \
) > src/org/ibex/nestedvm/UsermodeConstants.java
#
# Tests
# These are simply here for convenience. They aren't required
# to build or run mips2java
#
build/tests/Env.class: build/org/ibex/nestedvm/Runtime.class build/org/ibex/nestedvm/Interpreter.class
# Generic Hello Worldish test
test_COMPILERFLAGS = -o unixruntime
test: build/tests/Test.class
$(JAVA) -cp build tests.Test "arg 1" "arg 2" "arg 3"
inttest: build/tests/Test.mips build/org/ibex/nestedvm/Interpreter.class
$(JAVA) -cp build org.ibex.nestedvm.Interpreter build/tests/Test.mips "arg 1" "arg 2" "arg 3"
cxxtest: build/tests/CXXTest.class
$(JAVA) -cp build tests.CXXTest
# CallTest
build/tests/CallTest.class: build/tests/Test.class
calltest: build/tests/CallTest.class
$(JAVA) -cp build tests.CallTest `date|perl -pe 's/\D+/ /g;'` `id -u`
# FDTest
build/tests/FDTest.class: build/tests/Test.class
fdtest: build/tests/FDTest.class
$(JAVA) -cp build tests.FDTest
# Pascal Test
pascaltest: build/tests/PascalHello.class
$(JAVA) -cp build tests.PascalHello
# Simple
Simple_LDFLAGS = -nostdlib
simpletest: build/tests/Simple.class
$(JAVA) -cp build tests.Simple
# Paranoia
Paranoia_CFLAGS = "-Wno-error"
Paranoia_LDFLAGS = -lm
paranoiatest: build/tests/Paranoia.class
$(JAVA) -cp build tests.Paranoia
# Linpack
build/tests/Linpack.mips: $(tasks)/download_linpack $(tasks)/build_gcc_step2
mkdir -p `dirname "$@"`
$(MIPS_G77) $(MIPS_CFLAGS) $(Linpack_CFLAGS) $(MIPS_LDFLAGS) -o $@ upstream/download/linpack_bench.f -lc
linpacktest: build/tests/Linpack.class
$(JAVA) -cp build tests.Linpack
#
# Freetype Stuff
#
FreeType_CFLAGS = -Iupstream/build/freetype/include
FreeType_LDFLAGS = -Lupstream/build/freetype/objs -lfreetype
FreeTypeDemoHelper_CFLAGS = $(FreeType_CFLAGS)
FreeTypeDemoHelper_LDFLAGS = $(FreeType_LDFLAGS)
build/tests/FreeTypeDemoHelper.o: $(tasks)/build_freetype
build/tests/FreeTypeDemoHelper.mips:
build/tests/FreeTypeDemo.class: build/tests/FreeTypeDemoHelper.class
FTBench_CFLAGS = $(FreeType_CFLAGS)
FTBench_LDFLAGS = $(FreeType_LDFLAGS)
build/tests/FTBench.o: $(tasks)/build_freetype
#
# MSPack Stuff
#
MSPackHelper_CFLAGS = -Iupstream/build/libmspack/mspack
MSPackHelper_LDFLAGS = -Lupstream/build/libmspack/mspack -lmspack
build/tests/MSPackHelper.o: $(tasks)/build_libmspack
build/tests/MSPack.class: build/tests/MSPackHelper.class
MSPackBench_CFLAGS = -Iupstream/build/libmspack/mspack
MSPackBench_LDFLAGS = -Lupstream/build/libmspack/mspack -lmspack
build/tests/MSPackBench.o: $(tasks)/build_libmspack
#
# Echo
#
build/tests/Echo.class: build/tests/EchoHelper.class
#
# Libjpeg
#
DJpeg_COMPILERFLAGS = -o onepage,pagesize=8m
build/tests/DJpeg.mips: $(tasks)/build_libjpeg
@mkdir -p `dirname $@`
cp upstream/build/libjpeg/djpeg $@
#
# Busybox
#
BusyBox_COMPILERFLAGS = -o unixruntime
build/tests/BusyBox.mips: $(tasks)/build_busybox
@mkdir -p `dirname $@`
cp upstream/build/busybox/busybox $@
busyboxtest: build/tests/BusyBox.class
$(JAVA) -Dnestedvm.busyboxhack=true -cp "$(classpath)" tests.BusyBox ash
#
# Boehm GC
#
build/tests/GCTest.mips: $(tasks)/build_boehmgc
@mkdir -p `dirname $@`
cp upstream/build/boehmgc/gctest $@
boehmgctest: build/tests/Env.class build/tests/GCTest.class
$(JAVA) -cp build tests.Env GC_PRINT_STATS=1 tests.GCTest
# TeX
Tangle_COMPILERFLAGS = -o unixruntime
build/tests/Tangle.mips: $(tasks)/build_tex_tangle
@mkdir -p `dirname $@`
cp upstream/build/tex/tangle.mips $@
TeX_COMPILERFLAGS = -o unixruntime
build/tests/TeX.mips: $(tasks)/build_tex
@mkdir -p `dirname $@`
cp upstream/build/tex/tex.mips $@
NtlmAuth_COMPILERFLAGS = -o unixruntime
build/tests/NtlmAuth.mips: $(tasks)/build_samba
mkdir -p `dirname $@`
cp upstream/build/samba/source/bin/ntlm_auth $@
ntlmtest: build/tests/NtlmAuth.class
@test -e smb.conf || cp upstream/build/samba/examples/smb.conf.default smb.conf
$(JAVA) -cp "$(classpath)" tests.NtlmAuth --username=brian --password=test --diagnostics -d 5
ntlmauth.jar: build/tests/NtlmAuth.class $(tasks)/build_git_gcclass .gcclass_hints
mkdir -p tmp/pruned
rm -rf tmp/pruned/*
java -cp \
upstream/build/gcclass/build:upstream/build/gcclass/upstream/bcel-5.1/bcel-5.1.jar \
com.brian_web.gcclass.GCClass "$(classpath)" tmp/pruned tests.NtlmAuth.main `cat .gcclass_hints`
printf "Manifest-Version: 1.0\nMain-Class: tests.NtlmAuth\n" > .manifest.ntlm
cd tmp/pruned && jar cfm ../../$@ ../../.manifest.ntlm .
rm -f .manifest.ntlm
gmptest: $(tasks)/build_gmp
cd upstream/build/gmp && \
make check TESTS_ENVIRONMENT="java -cp \"$(classpath)\" org.ibex.nestedvm.RuntimeCompiler"
#
# Speed tests
#
build/tests/SpeedTest.class: build/org/ibex/nestedvm/Runtime.class
tmp/thebride_1280.jpg:
@mkdir -p tmp
cd tmp && curl -O http://www.brianweb.net/misc/thebride_1280.jpg
oldspeedtest: build/tests/DJpeg.class tmp/thebride_1280.jpg
bash -c "time $(JAVA) -cp build tests.DJpeg -targa -outfile tmp/thebride_1280.tga tmp/thebride_1280.jpg"
@echo "e90f6b915aee2fc0d2eb9fc60ace6203 tmp/thebride_1280.tga" | md5sum -c && echo "MD5 is OK"
djpegspeedtest: build/tests/SpeedTest.class build/tests/DJpeg.class tmp/thebride_1280.jpg
@echo "Running DJpeg test..."
@$(JAVA) -cp build tests.SpeedTest tests.DJpeg 8 -targa -outfile tmp/thebride_1280.tga tmp/thebride_1280.jpg
mspackspeedtest: build/tests/SpeedTest.class build/tests/MSPackBench.class
@if [ -e tmp/mspack/comic32.exe ]; then \
echo "Running MSPackBench test..."; \
cd tmp/mspack && $(JAVA) -cp ../../build tests.SpeedTest tests.MSPackBench 20 *32.exe; \
else \
echo "Run \"make check\" to get the MS True Type fonts for the MSPackBench test"; \
fi
speedtest: build/tests/SpeedTest.class build/tests/DJpeg.class build/tests/FTBench.class tmp/thebride_1280.jpg build/tests/MSPackBench.class
@echo "Running DJpeg test..."
@$(JAVA) -cp build tests.SpeedTest tests.DJpeg 10 -targa -outfile tmp/thebride_1280.tga tmp/thebride_1280.jpg
@if [ -e tmp/mspack/Comic.TTF ]; then \
echo "Running FTBench test..."; \
$(JAVA) -cp build tests.SpeedTest tests.FTBench 10 tmp/mspack/Comic.TTF tmp/mspack/Comic.TTF.render; \
else \
echo "Run \"make check\" to get Arial.TTF for the FTBench test"; \
fi
@if false && [ -e tmp/mspack/comic32.exe ]; then \
echo "Running MSPackBench test..."; \
cd tmp/mspack && $(JAVA) -cp ../../build tests.SpeedTest tests.MSPackBench 10 *32.exe; \
else \
echo "Run \"make check\" to get the MS True Type fonts for the MSPackBench test"; \
fi
intspeed: build/tests/DJpeg.mips build/org/ibex/nestedvm/Interpreter.class tmp/thebride_1280.jpg
time $(JAVA) -cp build org.ibex.nestedvm.Interpreter build/tests/DJpeg.mips -targa -outfile tmp/thebride_1280.tga tmp/thebride_1280.jpg
@echo "e90f6b915aee2fc0d2eb9fc60ace6203 tmp/thebride_1280.tga" | md5sum -c && echo "MD5 is OK"
#
# Verification checks
#
check: $(patsubst %,build/tests/%.class, FTBench MSPackBench DJpeg GCTest) tmp/thebride_1280.jpg
@/bin/bash ./src/tests/check.sh running_from_make
compiletests: $(patsubst %,build/tests/%.class,FTBench MSPackBench DJpeg Test FreeTypeDemoHelper MSPackHelper EchoHelper BusyBox GCTest Fork)
@true
#
# Darcs stuff
#
commit:
@if [ -d _darcs ]; then darcs push; \
else echo "You need darcs to commit"; false; \
fi
update:
@if [ -d _darcs ]; then darcs pull; \
else echo "you must have darcs installed in order to acquire the rest of the software" \
fi
#
# Paper stuff
#
charts := $(shell find doc/charts -name \*.dat)
# IVME Paper
doc/charts/%.pdf: doc/charts/%.dat doc/charts/%.gnuplot
cd doc/charts; gnuplot $*.gnuplot
cd doc/charts; chmod +x boxfill.pl; ./boxfill.pl -g -o unfilled.eps $*.eps
cd doc/charts; ps2pdf $*.eps
doc/ivme04.pdf: doc/ivme04.tex doc/acmconf.cls $(charts:%.dat=%.pdf) build/tests/TeX.class
cp upstream/build/tex/tex.pool upstream/build/tex/texinputs/tex.pool
cd upstream/build/tex/texinputs && echo '\latex.ltx' | java -cp $(mips2java_root)/build:$(mips2java_root)/$(CLASSGEN_PATH) tests.TeX
cd upstream/build/tex/texinputs && ln -fs ../../../../doc/* .; rm -f ivme04.aux; touch ivme04.aux; touch ivme04.bbl
cd upstream/build/tex/texinputs && echo '\&latex \input ivme04.tex' | java -cp $(mips2java_root)/build:$(mips2java_root)/$(CLASSGEN_PATH) tests.TeX
cd upstream/build/tex/texinputs && bibtex ivme04
cd upstream/build/tex/texinputs && echo '\&latex \input ivme04.tex' | java -cp $(mips2java_root)/build:$(mips2java_root)/$(CLASSGEN_PATH) tests.TeX
cd upstream/build/tex/texinputs && dvipdf ivme04.dvi
#cp upstream/build/tex/texinputs/ivme04.pdf $@
pdf: doc/ivme04.pdf
open doc/ivme04.pdf
push:
git push /afs/megacz.com/web/org/ibex/nestedvm/ master
snapshot:
git archive --prefix=nestedvm-`date +%Y-%m-%d`/ HEAD | \
gzip -c > \
/afs/megacz.com/web/org/ibex/nestedvm/dist/nestedvm-`date +%Y-%m-%d`.tgz
@echo url is http://nestedvm.ibex.org/dist/dist/nestedvm-`date +%Y-%m-%d`.tgz