forked from EtchedPixels/FUZIX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
73 lines (59 loc) · 1.95 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
# Set this to the desired platform to build
#
# Useful values for general work
#
# coco2cart: Tandy COCO2 or Dragon with 64K and IDE or SDC + cartridge flash
# (or modified xroar)
# coco3: Tandy COCO3 512K (or MAME)
# dragon-nx32: Dragon 32/64 with Spinx 512K card (or modified xroar)
# msx2: MSX2 with 128K or more and MegaFlashROM+SD interface
# (or OpenMSX suitably configured)
# mtx: Memotech MTX512 with SDX (or MEMU emulator)
# multicomp09: Extended multicomp 6809
# n8vem-mark4: N8VEM Retrobrew Z180 board
# nc100: Amstrad NC100 (or emulator)
# p112: DX Designs P112
# socz80: Will Sowerbutt's FPGA SocZ80 or extended version
# trs80: TRS80 Model 4P with 128K RAM (some other TRS80 extension
# mappers have untested code in the tree)
# z80pack: Z80Pack virtual Z80 platform
# zeta-v2: Zeta retrobrew SBC
#
# Virtual platforms for in progress development work
#
# v65: Virtual platform for 6502 development
# v65c816: Virtual platform for 65c816 development
# v68: Virtual platfomr for 68000 development
TARGET=z80pack
# Get the CPU type
include Kernel/platform-$(TARGET)/target.mk
ifeq ($(USERCPU),)
USERCPU = $(CPU)
endif
# FIXME: we should make it possible to do things entirely without /opt/fcc
PATH := /opt/fcc/bin:$(PATH)
# TARGET is what we are building
# CPU is the CPU type for the kernel
# USERCPU is the CPU type for userspace and eventually may be different
# (eg for 65c816 with 6502 user)
export TARGET CPU USERCPU PATH
all: stand ltools libs apps kernel
stand:
+(cd Standalone; $(MAKE))
ltools:
+(cd Library; $(MAKE); $(MAKE) install)
libs: ltools
+(cd Library/libs; $(MAKE) -f Makefile.$(USERCPU); \
$(MAKE) -f Makefile.$(USERCPU) install)
apps: libs
+(cd Applications; $(MAKE))
kernel: ltools
+(cd Kernel; $(MAKE))
kclean:
+(cd Kernel; $(MAKE) clean)
clean:
+(cd Standalone; $(MAKE) clean)
+(cd Library/libs; $(MAKE) -f Makefile.$(USERCPU) clean)
+(cd Library; $(MAKE) clean)
+(cd Kernel; $(MAKE) clean)
+(cd Applications; $(MAKE) clean)