diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-07-06 17:15:21 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-07-06 17:15:21 +0000 |
commit | 33e3963e1b9298e01cadd738124f0e618b5b79f5 (patch) | |
tree | 644d51090f8792ccd3cb6568e1673affaa4a3831 /Makefile | |
parent | cd4c3e888a385acbb27532745102b95796185777 (diff) |
added user mode Linux Copy On Write disk image support - added -snapshot support (initial patch by Rusty Russell)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@309 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -28,7 +28,7 @@ else LDFLAGS+=-Wl,-shared endif ifeq ($(TARGET_ARCH), i386) -PROGS+=vl +PROGS+=vl vlmkcow endif endif @@ -141,7 +141,10 @@ endif # must use static linking to avoid leaving stuff in virtual address space vl: vl.o block.o libqemu.a - $(CC) -static -Wl,-T,i386-vl.ld -o $@ $^ $(LIBS) + $(CC) -pg -static -Wl,-T,i386-vl.ld -o $@ $^ $(LIBS) + +vlmkcow: vlmkcow.o + $(CC) -o $@ $^ $(LIBS) depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend |