cp/shell: NSS IPL always performs a system clear load
[hvf.git] / Makefile
blob6f747e2923431f01a5addc6f1139ea317b2e23c3
2 # HVF: Hobbyist Virtualization Facility
6 # This is the top-level makefile not much happens here
9 all:
10 make -C build
11 make -C lib
12 make -C cp
13 make -C nss/8ball
14 make -C loader
15 make -C installer
16 ./build/mkarchive \
17 cp/config/hvf.directory text 80 \
18 cp/config/system.config text 80 \
19 cp/config/local-3215.txt text 80 \
20 cp/hvf bin \
21 loader/eckd.rto bin \
22 loader/loader.rto bin \
23 doc/installed_files.txt text 80 \
24 nss/8ball/8ball bin \
25 > installer/archive.cpio
26 ./build/padcat installer/rdr.rto installer/loader.rto installer/archive.cpio > installer.bin
28 doc:
29 make -C doc/manual
31 clean:
32 make -C build clean
33 make -C lib clean
34 make -C cp clean
35 make -C nss/8ball clean
36 make -C loader clean
37 make -C installer clean
38 make -C doc/manual clean
39 rm -f installer/archive.cpio
40 rm -f installer.bin
42 .PHONY: all doc clean