summaryrefslogtreecommitdiff
path: root/Makefile.target
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2007-02-27 21:02:54 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2007-02-27 21:02:54 +0000
commit3a11702b21a9bc2e23fd77e0dcad7f94bdfa48fe (patch)
tree30b999b53de56bedc7c9dd2e32cfb51094142edc /Makefile.target
parent00a709c7b9f46fee5f2179e3e05adf5f8124f561 (diff)
downloadqemu-3a11702b21a9bc2e23fd77e0dcad7f94bdfa48fe.tar.gz
Include LDFLAGS when linking system emulator.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2455 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r--Makefile.target2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target
index 2c8a873a26..b5cde5dc75 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -464,7 +464,7 @@ SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
endif
$(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
- $(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
+ $(CC) $(VL_LDFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS)
cocoa.o: cocoa.m
$(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<