diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-06-24 13:42:40 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-06-24 13:42:40 +0000 |
commit | 0824d6fc674084519c856c433887221be099c549 (patch) | |
tree | 0f6b30912a6fc69a37ea757bfa5a8d9bc259b95c /Makefile | |
parent | 6c0372d30be01e2a4664def829ed9682c2846d29 (diff) | |
download | qemu-0824d6fc674084519c856c433887221be099c549.tar.gz qemu-0824d6fc674084519c856c433887221be099c549.tar.bz2 qemu-0824d6fc674084519c856c433887221be099c549.zip |
for hard core developpers only: a new user mode linux project :-)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@267 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -135,6 +135,10 @@ ifeq ($(ARCH),alpha) 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 +vl: vl.o libqemu.a + $(CC) -static -Wl,-T,i386-vl.ld -o $@ $^ $(LIBS) + depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend |