mirror of https://github.com/xqemu/xqemu.git
filename fixes
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@403 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
3486513433
commit
16e9b7de41
|
@ -17,8 +17,14 @@ else
|
||||||
QEMU_SYSTEM=qemu
|
QEMU_SYSTEM=qemu
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef CONFIG_SOFTMMU
|
ifdef CONFIG_USER_ONLY
|
||||||
PROGS=$(QEMU_USER)
|
PROGS=$(QEMU_USER)
|
||||||
|
else
|
||||||
|
ifeq ($(ARCH),i386)
|
||||||
|
ifeq ($(TARGET_ARCH), i386)
|
||||||
|
PROGS+=$(QEMU_SYSTEM)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef CONFIG_STATIC
|
ifdef CONFIG_STATIC
|
||||||
|
@ -41,9 +47,6 @@ else
|
||||||
# is the simplest way to make it self virtualizable!
|
# is the simplest way to make it self virtualizable!
|
||||||
LDFLAGS+=-Wl,-shared
|
LDFLAGS+=-Wl,-shared
|
||||||
endif
|
endif
|
||||||
ifeq ($(TARGET_ARCH), i386)
|
|
||||||
PROGS+=$(QEMU_SYSTEM)
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(ARCH),ppc)
|
ifeq ($(ARCH),ppc)
|
||||||
|
@ -171,7 +174,7 @@ sdl.o: sdl.c
|
||||||
$(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<
|
$(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<
|
||||||
|
|
||||||
depend: $(SRCS)
|
depend: $(SRCS)
|
||||||
$(CC) -MM $(CFLAGS) $^ 1>.depend
|
$(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend
|
||||||
|
|
||||||
# libqemu
|
# libqemu
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue