Commit 16e9b7de41bc4163fe53140f387c020ea55d0a06
1 parent
34865134
filename fixes
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@403 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
8 additions
and
5 deletions
Makefile.target
| ... | ... | @@ -17,8 +17,14 @@ else |
| 17 | 17 | QEMU_SYSTEM=qemu |
| 18 | 18 | endif |
| 19 | 19 | |
| 20 | -ifndef CONFIG_SOFTMMU | |
| 20 | +ifdef CONFIG_USER_ONLY | |
| 21 | 21 | PROGS=$(QEMU_USER) |
| 22 | +else | |
| 23 | +ifeq ($(ARCH),i386) | |
| 24 | +ifeq ($(TARGET_ARCH), i386) | |
| 25 | +PROGS+=$(QEMU_SYSTEM) | |
| 26 | +endif | |
| 27 | +endif | |
| 22 | 28 | endif |
| 23 | 29 | |
| 24 | 30 | ifdef CONFIG_STATIC |
| ... | ... | @@ -41,9 +47,6 @@ else |
| 41 | 47 | # is the simplest way to make it self virtualizable! |
| 42 | 48 | LDFLAGS+=-Wl,-shared |
| 43 | 49 | endif |
| 44 | -ifeq ($(TARGET_ARCH), i386) | |
| 45 | -PROGS+=$(QEMU_SYSTEM) | |
| 46 | -endif | |
| 47 | 50 | endif |
| 48 | 51 | |
| 49 | 52 | ifeq ($(ARCH),ppc) |
| ... | ... | @@ -171,7 +174,7 @@ sdl.o: sdl.c |
| 171 | 174 | $(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $< |
| 172 | 175 | |
| 173 | 176 | depend: $(SRCS) |
| 174 | - $(CC) -MM $(CFLAGS) $^ 1>.depend | |
| 177 | + $(CC) -MM $(CFLAGS) $(DEFINES) $^ 1>.depend | |
| 175 | 178 | |
| 176 | 179 | # libqemu |
| 177 | 180 | ... | ... |