Subversion Repositories Shiroi

Rev

Rev 43 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 43 Rev 56
Line 1... Line 1...
1
# $Id: Makefile 43 2024-09-02 13:04:22Z nishi $
1
# $Id: Makefile 56 2024-09-03 11:23:39Z nishi $
2
 
2
 
3
PWD = `pwd`
3
PWD = `pwd`
4
PLATFORM = generic
4
PLATFORM = generic
5
 
5
 
6
FLAGS= PWD=$(PWD) PLATFORM=$(PLATFORM)
6
FLAGS= PWD=$(PWD) PLATFORM=$(PLATFORM)
7
 
7
 
8
include Platform/$(PLATFORM).mk
8
include Platform/$(PLATFORM).mk
9
 
9
 
10
.PHONY: all clean emulator rom ./Emulator ./ROM format
10
.PHONY: all fetch clean emulator rom ./Emulator ./ROM format
11
 
11
 
12
all: emulator rom
12
all: emulator rom
13
 
13
 
-
 
14
fetch:
-
 
15
	wget -O ROM/basic.c http://svn.nishi.boats/repo/krakow/trunk/BASIC/basic.c
-
 
16
 
14
emulator: ./Emulator
17
emulator: ./Emulator
15
rom: ./ROM
18
rom: ./ROM
16
 
19
 
17
./Emulator::
20
./Emulator::
18
	$(MAKE) -C $@ $(FLAGS)
21
	$(MAKE) -C $@ $(FLAGS)