comparison os9/Makefile @ 0:9a224bd9b45f

os9 emulation
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 02 Jul 2018 02:12:31 +0900
parents
children 3c736a81b886
comparison
equal deleted inserted replaced
-1:000000000000 0:9a224bd9b45f
1 all: os9mod makerom os9disass os9.rom
2
3 CC=clang
4 CFLAGS = -g
5
6 os9mod : crc.c os9.h os9mod.c os9.h
7 $(CC) $(CFLAGS) -o os9mod crc.c os9mod.c
8
9 makerom : makerom.c
10 $(CC) $(CFLAGS) -o makerom makerom.c
11
12 os9disass : os9disass.c
13 $(CC) $(CFLAGS) -Wno-format-security -o os9disass os9disass.c
14
15 os9.rom : makerom modules/init.b modules/pty.b
16 ./makerom os9.rom modules/Shell modules/init.b modules/mdir modules/SysGo modules/IOMan modules/SCF modules/pty-dd.b modules/pty.b modules/OS9p2 modules/OS9
17
18 os9b.rom : makerom modules/init.b modules/pty.b
19 ./makerom os9b.rom modules/Basic09 modules/Shell modules/init.b modules/mdir modules/SysGo modules/IOMan modules/SCF modules/pty-dd.b modules/pty.b modules/OS9p2 modules/OS9
20