Subversion Repositories Shiroi

Rev

Rev 1 | Rev 7 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 3
Line 1... Line 1...
1
# $Id: Makefile 1 2024-08-28 08:10:28Z nishi $
1
# $Id: Makefile 3 2024-08-28 09:19:04Z nishi $
2
 
2
 
3
include $(PWD)/Platform/$(PLATFORM).mk
3
include $(PWD)/Platform/$(PLATFORM).mk
4
 
4
 
5
.PHONY: all clean
5
.PHONY: all clean
6
.SUFFIXES: .c .o
6
.SUFFIXES: .c .o
7
 
7
 
8
OBJS = main.o thread.o emu/shiroi.o
8
OBJS = main.o thread.o emu/shiroi.o
9
OBJS += emu/card/shiroi_video_mk_i.o emu/card/shiroi_sound_mk_i.o emu/card/shiroi_math_mk_i.o
9
OBJS += emu/card/shiroi_video_mk_i.o emu/card/shiroi_sound_mk_i.o emu/card/shiroi_math_mk_i.o emu/card/shiroi_text_mk_i.o
10
OBJS += emu/chips.o emu/tms9918.o emu/am9511.o emu/tms9918util.o emu/ova.o emu/floatcnv.o
10
OBJS += emu/chips.o emu/tms9918.o emu/am9511.o emu/tms9918util.o emu/ova.o emu/floatcnv.o
11
 
11
 
12
all: shiroi$(EXEC)
12
all: shiroi$(EXEC)
13
 
13
 
14
shiroi$(EXEC): $(OBJS)
14
shiroi$(EXEC): $(OBJS)