aboutsummaryrefslogtreecommitdiff
path: root/backends/dc/Makefile
blob: 9a8595a95e8bb2f681b2180c1a9d7be098055996 (plain)
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
# $Header$

ronindir = /usr/local/ronin

VPATH = ../..

CXX     = sh-elf-g++ -ml -m4-single-only
CXXFLAGS= -O1 -Wno-multichar
DEFINES = -D__DC__ -DNONSTANDARD_PORT -DNONSTANDARD_SAVE
LDFLAGS := -Wl,-Ttext,0x8c010000 -nostartfiles ronin/crt0.o
INCLUDES:= -I./ -I../.. -I../../common
CPPFLAGS= $(DEFINES) $(INCLUDES)
LIBS	= ronin/libronin.a ronin/libz.a -lm
EXEEXT = .elf
MKDIR = mkdir -p
ECHO = /usr/ucb/echo -n
CAT = cat
RM = rm -f
AR = sh-elf-ar cru
RANLIB = sh-elf-ranlib

OBJS :=	dcmain.o time.o display.o audio.o input.o selector.o icon.o \
	label.o vmsave.o dc-fs.o

include ../../Makefile.common

INCS	+= portdefs.h dc.h
LIBS    := scumm/libscumm.a common/libcommon.a $(LIBS)

$(OBJS): Makefile ronin

ronin:
	ln -s $(ronindir) $@

%/module.mk :
	@mkdir -p $*
	@test -h common.rules || ln -s ../../common.rules ./
	@test ! -f ../../$@ || \
	  ln -s `echo $* | sed -e 's/[^/][^/]*/../g'`/../../$@ $@