Mercurial > hg > Members > kono > nitros9-code
comparison level1/atari/bootroms/makefile @ 2620:3574de541ad4
Everything WORKS
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Wed, 22 Feb 2012 22:13:35 -0600 |
parents | d888412d8118 |
children | 1df7d248bb24 |
comparison
equal
deleted
inserted
replaced
2619:d888412d8118 | 2620:3574de541ad4 |
---|---|
5 # Commands directory | 5 # Commands directory |
6 CD = ../cmds | 6 CD = ../cmds |
7 | 7 |
8 DEPENDS = ./makefile | 8 DEPENDS = ./makefile |
9 | 9 |
10 BOOTFILE_ROM = $(MD)/krnp2 $(MD)/init \ | 10 BOOTFILE_ROM_P1 = $(MD)/krnp2 $(MD)/init \ |
11 $(MD)/ioman $(MD)/scf.mn $(MD)/vtio.dr $(MD)/term.dt \ | 11 $(MD)/ioman $(MD)/scf.mn $(MD)/vtio.dr $(MD)/term.dt \ |
12 $(MD)/sysgo $(CD)/mdir \ | 12 $(MD)/sysgo \ |
13 $(MD)/clock_60hz $(MD)/clock2_soft \ | |
13 $(MD)/krn | 14 $(MD)/krn |
14 | 15 |
15 BOOTFILE_ROM_OLD = $(MD)/rominfo $(MD)/ioman \ | 16 BOOTFILE_ROM_P2 = $(CD)/shell_21 $(CD)/mdir |
16 $(MD)/scf.mn $(MD)/vtio.dr \ | |
17 $(MD)/covdg.io \ | |
18 $(MD)/term32.dt \ | |
19 $(MD)/clock_60hz $(MD)/clock2_soft | |
20 | 17 |
21 BOOTROMS = nos96809l1.rom | 18 BOOTROMS = nos96809l1.rom |
22 | 19 |
23 ALLROMS = $(BOOTROMS) | 20 ALLROMS = $(BOOTROMS) |
24 | 21 |
25 all: $(ALLROMS) | 22 all: $(ALLROMS) |
26 | 23 |
27 # Bootfiles | 24 # Bootfiles |
28 nos96809l1.rom: $(BOOTFILE_ROM) $(DEPENDS) | 25 nos96809l1.rom: $(BOOTFILE_ROM) $(DEPENDS) |
29 $(MERGE) $(BOOTFILE_ROM)>$@ | 26 $(MERGE) $(BOOTFILE_ROM_P1)>$@_p1 |
30 $(PADROM) -b 10240 $@ | 27 $(MERGE) $(BOOTFILE_ROM_P2)>$@_p2 |
31 # $(PADROM) -b 16384 $@ | 28 $(PADROM) -b 10240 $@_p1 |
29 $(PADROM) -b 12288 $@_p1 | |
30 $(MERGE) $@_p2 $@_p1>$@ | |
31 $(PADROM) -b 16384 $@ | |
32 # $(RM) $@_p2 $@_p1 | |
32 | 33 |
33 clean: | 34 clean: |
34 $(RM) $(ALLROMS) | 35 $(RM) $(ALLROMS) |