diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-03-01 21:37:28 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-03-01 21:37:28 +0000 |
commit | 5b0753e0d8dfca5a33edcd3cc1306bb5d0594005 (patch) | |
tree | b12b8b3448c6335cbb75cbdd44a21e34cbfde8c5 /Makefile.target | |
parent | 157777ef3e5821643ef46470bc0fecfda9d06ece (diff) | |
download | qemu-5b0753e0d8dfca5a33edcd3cc1306bb5d0594005.zip |
initial Cocoa support (Pierre d'Herbemont)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1313 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index 25f4719a32..5c82e38a60 100644 --- a/Makefile.target +++ b/Makefile.target @@ -346,6 +346,10 @@ endif ifdef CONFIG_SDL VL_OBJS+=sdl.o endif +ifdef CONFIG_COCOA +VL_OBJS+=cocoa.o +COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa +endif ifdef CONFIG_SLIRP DEFINES+=-I$(SRC_PATH)/slirp SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \ @@ -373,7 +377,10 @@ VL_LDFLAGS+=-p endif $(QEMU_SYSTEM): $(VL_OBJS) libqemu.a - $(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(VL_LIBS) + $(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS) + +cocoa.o: cocoa.m + $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $< sdl.o: sdl.c keymaps.c sdl_keysym.h $(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $< |