2003-08-10 21:39:31 +00:00
|
|
|
include config.mak
|
|
|
|
|
2005-01-03 23:38:40 +00:00
|
|
|
TARGET_BASE_ARCH:=$(TARGET_ARCH)
|
|
|
|
ifeq ($(TARGET_ARCH), x86_64)
|
|
|
|
TARGET_BASE_ARCH:=i386
|
|
|
|
endif
|
2005-07-23 22:39:53 +00:00
|
|
|
ifeq ($(TARGET_ARCH), ppc64)
|
|
|
|
TARGET_BASE_ARCH:=ppc
|
|
|
|
endif
|
2005-01-30 22:43:42 +00:00
|
|
|
ifeq ($(TARGET_ARCH), sparc64)
|
|
|
|
TARGET_BASE_ARCH:=sparc
|
|
|
|
endif
|
2005-01-03 23:38:40 +00:00
|
|
|
TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
|
2004-11-07 18:04:02 +00:00
|
|
|
VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw:$(SRC_PATH)/audio
|
2004-03-21 17:02:00 +00:00
|
|
|
DEFINES=-I. -I$(TARGET_PATH) -I$(SRC_PATH)
|
|
|
|
ifdef CONFIG_USER_ONLY
|
|
|
|
VPATH+=:$(SRC_PATH)/linux-user
|
|
|
|
DEFINES+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ARCH)
|
|
|
|
endif
|
2004-06-03 19:07:57 +00:00
|
|
|
CFLAGS=-Wall -O2 -g -fno-strict-aliasing
|
2005-01-03 23:38:40 +00:00
|
|
|
#CFLAGS+=-Werror
|
2003-08-10 21:39:31 +00:00
|
|
|
LDFLAGS=-g
|
|
|
|
LIBS=
|
|
|
|
HELPER_CFLAGS=$(CFLAGS)
|
2004-03-31 23:37:16 +00:00
|
|
|
DYNGEN=../dyngen$(EXESUF)
|
2003-09-30 20:54:24 +00:00
|
|
|
# user emulator name
|
2004-12-19 23:33:47 +00:00
|
|
|
ifeq ($(TARGET_ARCH),arm)
|
|
|
|
ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
|
|
|
|
QEMU_USER=qemu-armeb
|
|
|
|
else
|
|
|
|
QEMU_USER=qemu-arm
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
QEMU_USER=qemu-$(TARGET_ARCH)
|
|
|
|
endif
|
2003-09-30 20:54:24 +00:00
|
|
|
# system emulator name
|
|
|
|
ifdef CONFIG_SOFTMMU
|
2004-04-12 20:39:29 +00:00
|
|
|
ifeq ($(TARGET_ARCH), i386)
|
2004-03-31 23:37:16 +00:00
|
|
|
QEMU_SYSTEM=qemu$(EXESUF)
|
2003-10-27 21:37:46 +00:00
|
|
|
else
|
2004-04-12 20:39:29 +00:00
|
|
|
QEMU_SYSTEM=qemu-system-$(TARGET_ARCH)$(EXESUF)
|
|
|
|
endif
|
|
|
|
else
|
2003-10-27 21:37:46 +00:00
|
|
|
QEMU_SYSTEM=qemu-fast
|
2003-09-30 20:54:24 +00:00
|
|
|
endif
|
|
|
|
|
2003-10-27 21:09:52 +00:00
|
|
|
ifdef CONFIG_USER_ONLY
|
2003-09-30 20:54:24 +00:00
|
|
|
PROGS=$(QEMU_USER)
|
2003-10-27 21:09:52 +00:00
|
|
|
else
|
2003-10-30 01:18:42 +00:00
|
|
|
PROGS+=$(QEMU_SYSTEM)
|
2003-11-16 23:18:17 +00:00
|
|
|
ifndef CONFIG_SOFTMMU
|
|
|
|
CONFIG_STATIC=y
|
|
|
|
endif
|
2004-01-05 00:08:14 +00:00
|
|
|
endif # !CONFIG_USER_ONLY
|
2003-08-10 21:39:31 +00:00
|
|
|
|
|
|
|
ifdef CONFIG_STATIC
|
|
|
|
LDFLAGS+=-static
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),i386)
|
|
|
|
CFLAGS+=-fomit-frame-pointer
|
|
|
|
OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
|
|
|
|
ifeq ($(HAVE_GCC3_OPTIONS),yes)
|
2004-08-03 21:42:45 +00:00
|
|
|
OP_CFLAGS+= -falign-functions=0 -fno-gcse
|
2003-08-10 21:39:31 +00:00
|
|
|
else
|
|
|
|
OP_CFLAGS+= -malign-functions=0
|
|
|
|
endif
|
2003-10-28 00:48:22 +00:00
|
|
|
|
2003-08-10 21:39:31 +00:00
|
|
|
ifdef TARGET_GPROF
|
2003-10-28 00:48:22 +00:00
|
|
|
USE_I386_LD=y
|
|
|
|
endif
|
|
|
|
ifdef CONFIG_STATIC
|
|
|
|
USE_I386_LD=y
|
|
|
|
endif
|
|
|
|
ifdef USE_I386_LD
|
2003-08-10 21:39:31 +00:00
|
|
|
LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386.ld
|
|
|
|
else
|
|
|
|
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
|
|
|
|
# that the kernel ELF loader considers as an executable. I think this
|
|
|
|
# is the simplest way to make it self virtualizable!
|
|
|
|
LDFLAGS+=-Wl,-shared
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2005-01-03 23:38:40 +00:00
|
|
|
ifeq ($(ARCH),x86_64)
|
2004-03-17 23:46:04 +00:00
|
|
|
OP_CFLAGS=$(CFLAGS) -falign-functions=0
|
2005-01-03 23:38:40 +00:00
|
|
|
LDFLAGS+=-Wl,-T,$(SRC_PATH)/x86_64.ld
|
2004-03-17 23:46:04 +00:00
|
|
|
endif
|
|
|
|
|
2003-08-10 21:39:31 +00:00
|
|
|
ifeq ($(ARCH),ppc)
|
2004-07-05 21:25:26 +00:00
|
|
|
CFLAGS+= -D__powerpc__
|
2003-08-10 21:39:31 +00:00
|
|
|
OP_CFLAGS=$(CFLAGS)
|
|
|
|
LDFLAGS+=-Wl,-T,$(SRC_PATH)/ppc.ld
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),s390)
|
|
|
|
OP_CFLAGS=$(CFLAGS)
|
|
|
|
LDFLAGS+=-Wl,-T,$(SRC_PATH)/s390.ld
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),sparc)
|
|
|
|
CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
|
|
|
|
LDFLAGS+=-m32
|
|
|
|
OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
|
|
|
|
HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
|
|
|
|
# -static is used to avoid g1/g3 usage by the dynamic linker
|
|
|
|
LDFLAGS+=-Wl,-T,$(SRC_PATH)/sparc.ld -static
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),sparc64)
|
|
|
|
CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
|
|
|
|
LDFLAGS+=-m64
|
|
|
|
OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),alpha)
|
|
|
|
# -msmall-data is not used because we want two-instruction relocations
|
|
|
|
# for the constant constructions
|
|
|
|
OP_CFLAGS=-Wall -O2 -g
|
|
|
|
# Ensure there's only a single GP
|
|
|
|
CFLAGS += -msmall-data
|
|
|
|
LDFLAGS+=-Wl,-T,$(SRC_PATH)/alpha.ld
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),ia64)
|
2005-04-07 22:20:31 +00:00
|
|
|
CFLAGS += -mno-sdata
|
2003-08-10 21:39:31 +00:00
|
|
|
OP_CFLAGS=$(CFLAGS)
|
2005-04-07 22:20:31 +00:00
|
|
|
LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
|
2003-08-10 21:39:31 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),arm)
|
2005-03-13 09:49:52 +00:00
|
|
|
OP_CFLAGS=$(CFLAGS) -mno-sched-prolog -fno-omit-frame-pointer
|
2003-08-10 21:39:31 +00:00
|
|
|
LDFLAGS+=-Wl,-T,$(SRC_PATH)/arm.ld
|
|
|
|
endif
|
|
|
|
|
2003-08-10 22:14:22 +00:00
|
|
|
ifeq ($(ARCH),m68k)
|
|
|
|
OP_CFLAGS=$(CFLAGS) -fomit-frame-pointer
|
|
|
|
LDFLAGS+=-Wl,-T,m68k.ld
|
|
|
|
endif
|
|
|
|
|
2003-08-10 21:39:31 +00:00
|
|
|
ifeq ($(HAVE_GCC3_OPTIONS),yes)
|
|
|
|
# very important to generate a return at the end of every operation
|
|
|
|
OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
|
|
|
|
endif
|
|
|
|
|
2004-07-05 21:25:26 +00:00
|
|
|
ifeq ($(CONFIG_DARWIN),yes)
|
|
|
|
OP_CFLAGS+= -mdynamic-no-pic
|
2004-12-19 23:18:01 +00:00
|
|
|
LIBS+=-lmx
|
2004-07-05 21:25:26 +00:00
|
|
|
endif
|
|
|
|
|
2003-08-10 21:39:31 +00:00
|
|
|
#########################################################
|
|
|
|
|
2004-08-03 21:14:23 +00:00
|
|
|
DEFINES+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
|
2003-08-10 21:39:31 +00:00
|
|
|
LIBS+=-lm
|
2004-08-01 21:46:49 +00:00
|
|
|
ifndef CONFIG_USER_ONLY
|
|
|
|
LIBS+=-lz
|
|
|
|
endif
|
2004-03-31 23:37:16 +00:00
|
|
|
ifdef CONFIG_WIN32
|
2004-07-14 17:19:55 +00:00
|
|
|
LIBS+=-lwinmm -lws2_32 -liphlpapi
|
2004-03-31 23:37:16 +00:00
|
|
|
endif
|
2003-08-10 21:39:31 +00:00
|
|
|
|
|
|
|
# profiling code
|
|
|
|
ifdef TARGET_GPROF
|
|
|
|
LDFLAGS+=-p
|
|
|
|
main.o: CFLAGS+=-p
|
|
|
|
endif
|
|
|
|
|
2004-03-21 17:02:00 +00:00
|
|
|
OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o osdep.o thunk.o
|
2003-08-10 21:39:31 +00:00
|
|
|
ifeq ($(TARGET_ARCH), i386)
|
|
|
|
OBJS+= vm86.o
|
|
|
|
endif
|
2004-02-16 21:55:35 +00:00
|
|
|
ifeq ($(TARGET_ARCH), arm)
|
2005-03-13 16:54:06 +00:00
|
|
|
OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
|
2004-02-16 21:55:35 +00:00
|
|
|
nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
|
2005-04-23 18:25:41 +00:00
|
|
|
nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
|
2004-02-16 21:55:35 +00:00
|
|
|
endif
|
2003-08-10 21:39:31 +00:00
|
|
|
SRCS:= $(OBJS:.o=.c)
|
|
|
|
OBJS+= libqemu.a
|
|
|
|
|
|
|
|
# cpu emulator library
|
2005-03-13 16:54:06 +00:00
|
|
|
LIBOBJS=exec.o kqemu.o translate-op.o translate-all.o cpu-exec.o\
|
2005-02-10 21:48:51 +00:00
|
|
|
translate.o op.o
|
2005-03-13 16:54:06 +00:00
|
|
|
ifdef CONFIG_SOFTFLOAT
|
|
|
|
LIBOBJS+=fpu/softfloat.o
|
|
|
|
else
|
|
|
|
LIBOBJS+=fpu/softfloat-native.o
|
|
|
|
endif
|
|
|
|
DEFINES+=-I$(SRC_PATH)/fpu
|
2003-08-10 21:39:31 +00:00
|
|
|
|
|
|
|
ifeq ($(TARGET_ARCH), i386)
|
2003-09-30 20:54:24 +00:00
|
|
|
LIBOBJS+=helper.o helper2.o
|
2004-02-16 21:55:35 +00:00
|
|
|
ifeq ($(ARCH), i386)
|
|
|
|
LIBOBJS+=translate-copy.o
|
|
|
|
endif
|
2003-08-10 21:39:31 +00:00
|
|
|
endif
|
|
|
|
|
2005-01-03 23:38:40 +00:00
|
|
|
ifeq ($(TARGET_ARCH), x86_64)
|
|
|
|
LIBOBJS+=helper.o helper2.o
|
|
|
|
endif
|
|
|
|
|
2005-07-23 22:39:53 +00:00
|
|
|
ifeq ($(TARGET_BASE_ARCH), ppc)
|
2004-01-05 00:08:14 +00:00
|
|
|
LIBOBJS+= op_helper.o helper.o
|
2003-11-23 17:05:30 +00:00
|
|
|
endif
|
|
|
|
|
2005-07-02 14:58:51 +00:00
|
|
|
ifeq ($(TARGET_ARCH), mips)
|
|
|
|
LIBOBJS+= op_helper.o helper.o
|
|
|
|
endif
|
|
|
|
|
2005-01-30 22:43:42 +00:00
|
|
|
ifeq ($(TARGET_BASE_ARCH), sparc)
|
2004-09-30 22:22:08 +00:00
|
|
|
LIBOBJS+= op_helper.o helper.o
|
|
|
|
endif
|
|
|
|
|
2005-02-22 19:27:29 +00:00
|
|
|
ifeq ($(TARGET_BASE_ARCH), arm)
|
2005-11-26 10:38:39 +00:00
|
|
|
LIBOBJS+= op_helper.o helper.o
|
2005-02-22 19:27:29 +00:00
|
|
|
endif
|
|
|
|
|
2003-08-10 21:39:31 +00:00
|
|
|
# NOTE: the disassembler code is only needed for debugging
|
|
|
|
LIBOBJS+=disas.o
|
|
|
|
ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
|
2004-03-17 23:46:04 +00:00
|
|
|
USE_I386_DIS=y
|
|
|
|
endif
|
2005-01-03 23:38:40 +00:00
|
|
|
ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
|
2004-03-17 23:46:04 +00:00
|
|
|
USE_I386_DIS=y
|
|
|
|
endif
|
|
|
|
ifdef USE_I386_DIS
|
2003-08-10 21:39:31 +00:00
|
|
|
LIBOBJS+=i386-dis.o
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
|
|
|
|
LIBOBJS+=alpha-dis.o
|
|
|
|
endif
|
2005-07-23 22:39:53 +00:00
|
|
|
ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
|
2003-08-10 21:39:31 +00:00
|
|
|
LIBOBJS+=ppc-dis.o
|
|
|
|
endif
|
2005-07-02 14:58:51 +00:00
|
|
|
ifeq ($(findstring mips, $(TARGET_ARCH) $(ARCH)),mips)
|
|
|
|
LIBOBJS+=mips-dis.o
|
|
|
|
endif
|
2005-01-30 22:43:42 +00:00
|
|
|
ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
|
2003-08-10 21:39:31 +00:00
|
|
|
LIBOBJS+=sparc-dis.o
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
|
|
|
|
LIBOBJS+=arm-dis.o
|
|
|
|
endif
|
2005-11-06 16:52:11 +00:00
|
|
|
ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
|
|
|
|
LIBOBJS+=m68k-dis.o
|
|
|
|
endif
|
2003-08-10 21:39:31 +00:00
|
|
|
|
|
|
|
ifeq ($(ARCH),ia64)
|
|
|
|
OBJS += ia64-syscall.o
|
|
|
|
endif
|
2005-04-17 19:16:13 +00:00
|
|
|
ifdef CONFIG_GDBSTUB
|
|
|
|
OBJS+=gdbstub.o
|
|
|
|
endif
|
2003-08-10 21:39:31 +00:00
|
|
|
|
2003-09-30 20:54:24 +00:00
|
|
|
all: $(PROGS)
|
2003-08-10 21:39:31 +00:00
|
|
|
|
2003-09-30 20:54:24 +00:00
|
|
|
$(QEMU_USER): $(OBJS)
|
2003-08-10 21:39:31 +00:00
|
|
|
$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
|
|
|
|
ifeq ($(ARCH),alpha)
|
|
|
|
# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
|
|
|
|
# the address space (31 bit so sign extending doesn't matter)
|
|
|
|
echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
|
|
|
|
endif
|
|
|
|
|
|
|
|
# must use static linking to avoid leaving stuff in virtual address space
|
2005-04-27 20:17:58 +00:00
|
|
|
VL_OBJS=vl.o osdep.o block.o readline.o monitor.o pci.o console.o
|
2005-04-28 21:15:08 +00:00
|
|
|
VL_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
|
2004-04-12 20:39:29 +00:00
|
|
|
|
2005-10-30 18:58:22 +00:00
|
|
|
SOUND_HW = sb16.o es1370.o
|
2004-11-11 16:55:09 +00:00
|
|
|
AUDIODRV = audio.o noaudio.o wavaudio.o
|
2004-11-09 23:09:44 +00:00
|
|
|
ifdef CONFIG_SDL
|
|
|
|
AUDIODRV += sdlaudio.o
|
|
|
|
endif
|
|
|
|
ifdef CONFIG_OSS
|
|
|
|
AUDIODRV += ossaudio.o
|
|
|
|
endif
|
2005-10-30 18:58:22 +00:00
|
|
|
ifdef CONFIG_COREAUDIO
|
|
|
|
AUDIODRV += coreaudio.o
|
|
|
|
endif
|
|
|
|
ifdef CONFIG_ALSA
|
|
|
|
AUDIODRV += alsaaudio.o
|
|
|
|
LIBS += -lasound
|
|
|
|
endif
|
|
|
|
ifdef CONFIG_DSOUND
|
|
|
|
AUDIODRV += dsoundaudio.o
|
|
|
|
LIBS += -lole32 -ldxguid
|
2004-11-07 18:04:02 +00:00
|
|
|
endif
|
2004-11-14 19:57:29 +00:00
|
|
|
ifdef CONFIG_FMOD
|
2004-11-07 18:04:02 +00:00
|
|
|
AUDIODRV += fmodaudio.o
|
2004-11-14 19:57:29 +00:00
|
|
|
audio.o fmodaudio.o: DEFINES := -I$(CONFIG_FMOD_INC) $(DEFINES)
|
|
|
|
LIBS += $(CONFIG_FMOD_LIB)
|
2004-11-07 18:04:02 +00:00
|
|
|
endif
|
2005-10-30 18:58:22 +00:00
|
|
|
ifdef CONFIG_ADLIB
|
|
|
|
SOUND_HW += fmopl.o adlib.o
|
|
|
|
endif
|
2004-11-07 18:04:02 +00:00
|
|
|
|
2005-11-06 16:13:29 +00:00
|
|
|
# USB layer
|
|
|
|
VL_OBJS+= usb.o usb-uhci.o usb-linux.o usb-hid.o
|
|
|
|
|
2005-01-03 23:38:40 +00:00
|
|
|
ifeq ($(TARGET_BASE_ARCH), i386)
|
2004-04-12 20:39:29 +00:00
|
|
|
# Hardware support
|
2005-11-26 10:14:03 +00:00
|
|
|
VL_OBJS+= ide.o ne2000.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
|
2004-11-07 18:04:02 +00:00
|
|
|
VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pc.o
|
2005-11-05 16:57:08 +00:00
|
|
|
VL_OBJS+= cirrus_vga.o mixeng.o apic.o parallel.o
|
2005-10-30 18:58:22 +00:00
|
|
|
DEFINES += -DHAS_AUDIO
|
2004-03-31 23:37:16 +00:00
|
|
|
endif
|
2005-07-23 22:39:53 +00:00
|
|
|
ifeq ($(TARGET_BASE_ARCH), ppc)
|
2005-11-26 10:14:03 +00:00
|
|
|
VL_OBJS+= ppc.o ide.o ne2000.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
|
2004-05-26 22:55:16 +00:00
|
|
|
VL_OBJS+= mc146818rtc.o serial.o i8259.o i8254.o fdc.o m48t59.o
|
2005-06-05 15:21:57 +00:00
|
|
|
VL_OBJS+= ppc_prep.o ppc_chrp.o cuda.o adb.o openpic.o heathrow_pic.o mixeng.o
|
2005-10-30 18:58:22 +00:00
|
|
|
DEFINES += -DHAS_AUDIO
|
2004-04-12 20:39:29 +00:00
|
|
|
endif
|
2005-07-02 14:58:51 +00:00
|
|
|
ifeq ($(TARGET_ARCH), mips)
|
2005-08-21 09:41:56 +00:00
|
|
|
VL_OBJS+= mips_r4k.o dma.o vga.o serial.o ne2000.o i8254.o i8259.o
|
|
|
|
#VL_OBJS+= #ide.o pckbd.o fdc.o m48t59.o
|
2005-07-02 14:58:51 +00:00
|
|
|
endif
|
2005-01-30 22:43:42 +00:00
|
|
|
ifeq ($(TARGET_BASE_ARCH), sparc)
|
2005-07-02 14:31:34 +00:00
|
|
|
ifeq ($(TARGET_ARCH), sparc64)
|
2005-11-26 10:14:03 +00:00
|
|
|
VL_OBJS+= sun4u.o ide.o ne2000.o pckbd.o ps2.o vga.o
|
2005-07-23 14:27:54 +00:00
|
|
|
VL_OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
|
|
|
|
VL_OBJS+= cirrus_vga.o parallel.o
|
|
|
|
VL_OBJS+= magic-load.o
|
2005-07-02 14:31:34 +00:00
|
|
|
else
|
2005-10-30 16:58:32 +00:00
|
|
|
VL_OBJS+= sun4m.o tcx.o lance.o iommu.o m48t59.o magic-load.o slavio_intctl.o
|
|
|
|
VL_OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o esp.o
|
2005-07-02 14:31:34 +00:00
|
|
|
endif
|
2004-09-30 22:22:08 +00:00
|
|
|
endif
|
2005-11-26 10:38:39 +00:00
|
|
|
ifeq ($(TARGET_BASE_ARCH), arm)
|
2005-12-04 18:54:21 +00:00
|
|
|
VL_OBJS+= integratorcp.o ps2.o smc91c111.o
|
2005-11-26 10:38:39 +00:00
|
|
|
endif
|
2004-04-12 20:39:29 +00:00
|
|
|
ifdef CONFIG_GDBSTUB
|
|
|
|
VL_OBJS+=gdbstub.o
|
2004-01-05 00:08:14 +00:00
|
|
|
endif
|
2003-08-10 21:39:31 +00:00
|
|
|
ifdef CONFIG_SDL
|
|
|
|
VL_OBJS+=sdl.o
|
2003-11-16 23:18:17 +00:00
|
|
|
endif
|
2005-03-01 21:37:28 +00:00
|
|
|
ifdef CONFIG_COCOA
|
|
|
|
VL_OBJS+=cocoa.o
|
2005-10-30 18:58:22 +00:00
|
|
|
COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
|
|
|
|
ifdef CONFIG_COREAUDIO
|
|
|
|
COCOA_LIBS+=-framework CoreAudio
|
|
|
|
endif
|
2005-03-01 21:37:28 +00:00
|
|
|
endif
|
2004-04-22 00:02:08 +00:00
|
|
|
ifdef CONFIG_SLIRP
|
|
|
|
DEFINES+=-I$(SRC_PATH)/slirp
|
|
|
|
SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
|
|
|
|
slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
|
2004-08-24 21:57:12 +00:00
|
|
|
tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
|
2004-04-22 00:02:08 +00:00
|
|
|
VL_OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
|
2003-08-10 21:39:31 +00:00
|
|
|
endif
|
|
|
|
|
2003-10-30 01:18:42 +00:00
|
|
|
VL_LDFLAGS=
|
|
|
|
# specific flags are needed for non soft mmu emulator
|
|
|
|
ifdef CONFIG_STATIC
|
|
|
|
VL_LDFLAGS+=-static
|
|
|
|
endif
|
2003-11-16 23:18:17 +00:00
|
|
|
ifndef CONFIG_SOFTMMU
|
|
|
|
VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/i386-vl.ld
|
|
|
|
endif
|
2004-07-05 21:25:26 +00:00
|
|
|
ifndef CONFIG_DARWIN
|
2004-04-02 20:55:59 +00:00
|
|
|
ifndef CONFIG_WIN32
|
|
|
|
VL_LIBS=-lutil
|
|
|
|
endif
|
2004-07-05 21:25:26 +00:00
|
|
|
endif
|
2005-02-10 21:48:51 +00:00
|
|
|
ifdef TARGET_GPROF
|
|
|
|
vl.o: CFLAGS+=-p
|
|
|
|
VL_LDFLAGS+=-p
|
|
|
|
endif
|
2003-10-30 01:18:42 +00:00
|
|
|
|
2005-04-07 22:20:31 +00:00
|
|
|
ifeq ($(ARCH),ia64)
|
|
|
|
VL_LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
|
|
|
|
endif
|
|
|
|
|
2005-10-30 18:58:22 +00:00
|
|
|
ifdef CONFIG_WIN32
|
|
|
|
SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
|
|
|
|
endif
|
|
|
|
|
2003-09-30 20:54:24 +00:00
|
|
|
$(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
|
2005-03-01 21:37:28 +00:00
|
|
|
$(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
|
|
|
|
|
|
|
|
cocoa.o: cocoa.m
|
|
|
|
$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
|
2003-08-10 21:39:31 +00:00
|
|
|
|
2004-12-12 16:56:30 +00:00
|
|
|
sdl.o: sdl.c keymaps.c sdl_keysym.h
|
2003-08-10 21:39:31 +00:00
|
|
|
$(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<
|
|
|
|
|
2004-11-14 18:59:52 +00:00
|
|
|
sdlaudio.o: sdlaudio.c
|
|
|
|
$(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<
|
|
|
|
|
2003-08-10 21:39:31 +00:00
|
|
|
depend: $(SRCS)
|
2003-10-27 21:09:52 +00:00
|
|
|
$(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend
|
2003-08-10 21:39:31 +00:00
|
|
|
|
2005-10-30 18:58:22 +00:00
|
|
|
vldepend: $(VL_OBJS:.o=.c)
|
|
|
|
$(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend
|
|
|
|
|
2003-08-10 21:39:31 +00:00
|
|
|
# libqemu
|
|
|
|
|
|
|
|
libqemu.a: $(LIBOBJS)
|
|
|
|
rm -f $@
|
|
|
|
$(AR) rcs $@ $(LIBOBJS)
|
|
|
|
|
2003-09-30 20:54:24 +00:00
|
|
|
translate.o: translate.c gen-op.h opc.h cpu.h
|
2003-08-10 21:39:31 +00:00
|
|
|
|
2005-03-13 16:54:06 +00:00
|
|
|
translate-all.o: translate-all.c opc.h cpu.h
|
|
|
|
|
|
|
|
translate-op.o: translate-all.c op.h opc.h cpu.h
|
2003-08-10 21:39:31 +00:00
|
|
|
|
2003-09-30 20:54:24 +00:00
|
|
|
op.h: op.o $(DYNGEN)
|
2003-08-10 21:39:31 +00:00
|
|
|
$(DYNGEN) -o $@ $<
|
|
|
|
|
2003-09-30 20:54:24 +00:00
|
|
|
opc.h: op.o $(DYNGEN)
|
2003-08-10 21:39:31 +00:00
|
|
|
$(DYNGEN) -c -o $@ $<
|
|
|
|
|
2003-09-30 20:54:24 +00:00
|
|
|
gen-op.h: op.o $(DYNGEN)
|
2003-08-10 21:39:31 +00:00
|
|
|
$(DYNGEN) -g -o $@ $<
|
|
|
|
|
2003-09-30 20:54:24 +00:00
|
|
|
op.o: op.c
|
2003-08-10 21:39:31 +00:00
|
|
|
$(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
|
|
|
|
|
2003-09-30 20:54:24 +00:00
|
|
|
helper.o: helper.c
|
2003-08-10 21:39:31 +00:00
|
|
|
$(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
|
|
|
|
|
2005-01-03 23:38:40 +00:00
|
|
|
ifeq ($(TARGET_BASE_ARCH), i386)
|
2005-01-08 18:58:29 +00:00
|
|
|
op.o: op.c opreg_template.h ops_template.h ops_template_mem.h ops_mem.h ops_sse.h
|
2003-09-30 20:54:24 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(TARGET_ARCH), arm)
|
|
|
|
op.o: op.c op_template.h
|
|
|
|
endif
|
2003-08-10 21:39:31 +00:00
|
|
|
|
2005-01-30 22:43:42 +00:00
|
|
|
ifeq ($(TARGET_BASE_ARCH), sparc)
|
2005-07-02 14:31:34 +00:00
|
|
|
op.o: op.c op_template.h op_mem.h fop_template.h fbranch_template.h
|
|
|
|
magic_load.o: elf_op.h
|
2003-09-30 20:54:24 +00:00
|
|
|
endif
|
2003-08-10 21:39:31 +00:00
|
|
|
|
2005-07-23 22:39:53 +00:00
|
|
|
ifeq ($(TARGET_BASE_ARCH), ppc)
|
2004-01-05 00:08:14 +00:00
|
|
|
op.o: op.c op_template.h op_mem.h
|
|
|
|
op_helper.o: op_helper_mem.h
|
2005-07-02 20:59:34 +00:00
|
|
|
translate.o: translate.c translate_init.c
|
2004-01-05 00:08:14 +00:00
|
|
|
endif
|
|
|
|
|
2005-07-02 14:58:51 +00:00
|
|
|
ifeq ($(TARGET_ARCH), mips)
|
|
|
|
op.o: op.c op_template.c op_mem.c
|
|
|
|
op_helper.o: op_helper_mem.c
|
|
|
|
endif
|
|
|
|
|
2003-08-10 21:39:31 +00:00
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
|
|
|
|
|
2004-02-16 21:55:35 +00:00
|
|
|
%.o: %.S
|
|
|
|
$(CC) $(DEFINES) -c -o $@ $<
|
|
|
|
|
2003-08-10 21:39:31 +00:00
|
|
|
clean:
|
2005-04-26 20:34:26 +00:00
|
|
|
rm -f *.o *.a *~ $(PROGS) gen-op.h opc.h op.h nwfpe/*.o slirp/*.o fpu/*.o
|
2003-09-30 20:54:24 +00:00
|
|
|
|
|
|
|
install: all
|
2004-03-26 22:43:34 +00:00
|
|
|
ifneq ($(PROGS),)
|
2004-04-02 20:55:59 +00:00
|
|
|
install -m 755 -s $(PROGS) "$(bindir)"
|
2004-03-26 22:43:34 +00:00
|
|
|
endif
|
2003-08-10 21:39:31 +00:00
|
|
|
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|
2005-10-30 18:58:22 +00:00
|
|
|
|
2005-11-05 18:55:28 +00:00
|
|
|
ifeq (1, 0)
|
2005-10-30 18:58:22 +00:00
|
|
|
audio.o sdlaudio.o dsoundaudio.o ossaudio.o wavaudio.o noaudio.o \
|
2005-11-05 18:55:28 +00:00
|
|
|
fmodaudio.o alsaaudio.o mixeng.o sb16.o es1370.o gus.o adlib.o: \
|
2005-10-30 18:58:22 +00:00
|
|
|
CFLAGS := $(CFLAGS) -Wall -Werror -W -Wsign-compare
|
|
|
|
endif
|