~jderose/ubuntu/raring/qemu/vde-again

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno, Aurelien Jarno
  • Date: 2008-08-25 04:38:35 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080825043835-8e3tftavy8bujdch
Tags: 0.9.1-6
[ Aurelien Jarno ]
* debian/control: 
  - Update list of supported targets (Closes: bug#488339).
* debian/qemu-make-debian-root:
  - Use mktemp instead of $$ to create temporary directories (Closes: 
    bug#496394).
* debian/links:
  - Add missing links to manpages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile for QEMU.
 
2
 
1
3
include config-host.mak
2
4
 
3
 
CFLAGS=-Wall -O2 -g
4
 
ifdef CONFIG_WIN32
5
 
CFLAGS+=-fpack-struct 
6
 
endif
7
 
LDFLAGS=-g
 
5
.PHONY: all clean distclean dvi info install install-doc tar tarbin \
 
6
        speed test html dvi info
 
7
 
 
8
VPATH=$(SRC_PATH):$(SRC_PATH)/hw
 
9
 
 
10
BASE_CFLAGS=
 
11
BASE_LDFLAGS=
 
12
 
 
13
BASE_CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
 
14
BASE_LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
 
15
 
 
16
CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP
 
17
CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
8
18
LIBS=
9
 
DEFINES+=-D_GNU_SOURCE
10
 
ifndef CONFIG_WIN32
11
 
TOOLS=qemu-mkcow
12
 
endif
13
19
ifdef CONFIG_STATIC
14
 
LDFLAGS+=-static
15
 
endif
16
 
 
17
 
all: dyngen$(EXESUF) $(TOOLS) qemu-doc.html qemu-tech.html qemu.1
18
 
        for d in $(TARGET_DIRS); do \
19
 
        make -C $$d $@ || exit 1 ; \
20
 
        done
21
 
 
22
 
qemu-mkcow: qemu-mkcow.c
23
 
        $(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $@ $^ $(LIBS)
24
 
 
 
20
BASE_LDFLAGS += -static
 
21
endif
 
22
ifdef BUILD_DOCS
 
23
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1
 
24
else
 
25
DOCS=
 
26
endif
 
27
 
 
28
LIBS+=$(AIOLIBS)
 
29
 
 
30
all: $(TOOLS) $(DOCS) recurse-all 
 
31
 
 
32
subdir-%: dyngen$(EXESUF) libqemu_common.a
 
33
        $(MAKE) -C $(subst subdir-,,$@) all
 
34
 
 
35
recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
 
36
 
 
37
#######################################################################
 
38
# BLOCK_OBJS is code used by both qemu system emulation and qemu-img
 
39
 
 
40
BLOCK_OBJS=cutils.o
 
41
BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
 
42
BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
 
43
BLOCK_OBJS+=block-qcow2.o block-parallels.o
 
44
 
 
45
######################################################################
 
46
# libqemu_common.a: Target indepedent part of system emulation. The
 
47
# long term path is to suppress *all* target specific code in case of
 
48
# system emulation, i.e. a single QEMU executable should support all
 
49
# CPUs and machines.
 
50
 
 
51
OBJS=$(BLOCK_OBJS)
 
52
OBJS+=readline.o console.o
 
53
OBJS+=block.o
 
54
 
 
55
OBJS+=irq.o
 
56
OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
 
57
OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o
 
58
OBJS+=scsi-disk.o cdrom.o
 
59
OBJS+=scsi-generic.o
 
60
OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o
 
61
OBJS+=sd.o ssi-sd.o
 
62
 
 
63
ifdef CONFIG_WIN32
 
64
OBJS+=tap-win32.o
 
65
endif
 
66
 
 
67
AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
 
68
ifdef CONFIG_SDL
 
69
AUDIO_OBJS += sdlaudio.o
 
70
endif
 
71
ifdef CONFIG_OSS
 
72
AUDIO_OBJS += ossaudio.o
 
73
endif
 
74
ifdef CONFIG_COREAUDIO
 
75
AUDIO_OBJS += coreaudio.o
 
76
endif
 
77
ifdef CONFIG_ALSA
 
78
AUDIO_OBJS += alsaaudio.o
 
79
endif
 
80
ifdef CONFIG_DSOUND
 
81
AUDIO_OBJS += dsoundaudio.o
 
82
endif
 
83
ifdef CONFIG_FMOD
 
84
AUDIO_OBJS += fmodaudio.o
 
85
audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
 
86
endif
 
87
AUDIO_OBJS+= wavcapture.o
 
88
OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
 
89
 
 
90
ifdef CONFIG_SDL
 
91
OBJS+=sdl.o x_keymap.o
 
92
endif
 
93
OBJS+=vnc.o d3des.o
 
94
 
 
95
ifdef CONFIG_COCOA
 
96
OBJS+=cocoa.o
 
97
endif
 
98
 
 
99
ifdef CONFIG_SLIRP
 
100
CPPFLAGS+=-I$(SRC_PATH)/slirp
 
101
SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
 
102
slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
 
103
tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
 
104
OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
 
105
endif
 
106
 
 
107
cocoa.o: cocoa.m
 
108
        $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
 
109
 
 
110
sdl.o: sdl.c keymaps.c sdl_keysym.h
 
111
        $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
 
112
 
 
113
vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
 
114
        $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
 
115
 
 
116
audio/sdlaudio.o: audio/sdlaudio.c
 
117
        $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
 
118
 
 
119
libqemu_common.a: $(OBJS)
 
120
        rm -f $@ 
 
121
        $(AR) rcs $@ $(OBJS)
 
122
 
 
123
QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS)
 
124
ifdef CONFIG_WIN32
 
125
QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
 
126
else
 
127
QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-posix.o
 
128
endif
 
129
 
 
130
######################################################################
 
131
 
 
132
qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
 
133
        $(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^ -lz $(LIBS)
 
134
 
 
135
qemu-img-%.o: %.c
 
136
        $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG $(BASE_CFLAGS) -c -o $@ $<
 
137
 
 
138
%.o: %.c
 
139
        $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
 
140
 
 
141
# dyngen host tool
25
142
dyngen$(EXESUF): dyngen.c
26
 
        $(HOST_CC) $(CFLAGS) $(DEFINES) -o $@ $^
 
143
        $(HOST_CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -o $@ $^
27
144
 
28
145
clean:
29
146
# avoid old build problems by removing potentially incorrect old files
30
 
        rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h 
31
 
        rm -f *.o *.a $(TOOLS) dyngen$(EXESUF) TAGS qemu.pod
32
 
        make -C tests clean
 
147
        rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
 
148
        rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
 
149
        rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
 
150
        $(MAKE) -C tests clean
33
151
        for d in $(TARGET_DIRS); do \
34
 
        make -C $$d $@ || exit 1 ; \
 
152
        $(MAKE) -C $$d $@ || exit 1 ; \
35
153
        done
36
154
 
37
155
distclean: clean
38
 
        rm -f config-host.mak config-host.h
 
156
        rm -f config-host.mak config-host.h $(DOCS)
 
157
        rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
39
158
        for d in $(TARGET_DIRS); do \
40
159
        rm -rf $$d || exit 1 ; \
41
160
        done
42
161
 
43
 
install: all 
44
 
        mkdir -p "$(bindir)"
45
 
ifndef CONFIG_WIN32
46
 
        install -m 755 -s $(TOOLS) "$(bindir)"
47
 
endif
48
 
        mkdir -p "$(sharedir)"
49
 
        install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
50
 
                       pc-bios/linux_boot.bin "$(sharedir)"
51
 
        mkdir -p "$(docdir)"
52
 
        install -m 644 qemu-doc.html  qemu-tech.html "$(docdir)"
53
 
ifndef CONFIG_WIN32
54
 
        mkdir -p "$(mandir)/man1"
55
 
        install qemu.1 qemu-mkcow.1 "$(mandir)/man1"
 
162
KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
 
163
ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
 
164
common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
 
165
 
 
166
install-doc: $(DOCS)
 
167
        mkdir -p "$(DESTDIR)$(docdir)"
 
168
        $(INSTALL) -m 644 qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
 
169
ifndef CONFIG_WIN32
 
170
        mkdir -p "$(DESTDIR)$(mandir)/man1"
 
171
        $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
 
172
endif
 
173
 
 
174
install: all $(if $(BUILD_DOCS),install-doc)
 
175
        mkdir -p "$(DESTDIR)$(bindir)"
 
176
ifneq ($(TOOLS),)
 
177
        $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
 
178
endif
 
179
        mkdir -p "$(DESTDIR)$(datadir)"
 
180
        for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
 
181
                video.x openbios-sparc32 pxe-ne2k_pci.bin \
 
182
                pxe-rtl8139.bin pxe-pcnet.bin; do \
 
183
                $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
 
184
        done
 
185
ifndef CONFIG_WIN32
 
186
        mkdir -p "$(DESTDIR)$(datadir)/keymaps"
 
187
        for x in $(KEYMAPS); do \
 
188
                $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
 
189
        done
56
190
endif
57
191
        for d in $(TARGET_DIRS); do \
58
 
        make -C $$d $@ || exit 1 ; \
 
192
        $(MAKE) -C $$d $@ || exit 1 ; \
59
193
        done
60
194
 
61
195
# various test targets
62
 
test speed test2: all
63
 
        make -C tests $@
 
196
test speed: all
 
197
        $(MAKE) -C tests $@
64
198
 
65
 
TAGS: 
 
199
TAGS:
66
200
        etags *.[ch] tests/*.[ch]
67
201
 
 
202
cscope:
 
203
        rm -f ./cscope.*
 
204
        find . -name "*.[ch]" -print > ./cscope.files
 
205
        cscope -b
 
206
 
68
207
# documentation
69
208
%.html: %.texi
70
209
        texi2html -monolithic -number $<
71
210
 
 
211
%.info: %.texi
 
212
        makeinfo $< -o $@
 
213
 
 
214
%.dvi: %.texi
 
215
        texi2dvi $<
 
216
 
72
217
qemu.1: qemu-doc.texi
73
 
        ./texi2pod.pl $< qemu.pod
 
218
        $(SRC_PATH)/texi2pod.pl $< qemu.pod
74
219
        pod2man --section=1 --center=" " --release=" " qemu.pod > $@
75
220
 
76
 
FILE=qemu-$(shell cat VERSION)
 
221
qemu-img.1: qemu-img.texi
 
222
        $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
 
223
        pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
 
224
 
 
225
info: qemu-doc.info qemu-tech.info
 
226
 
 
227
dvi: qemu-doc.dvi qemu-tech.dvi
 
228
 
 
229
html: qemu-doc.html qemu-tech.html
 
230
 
 
231
VERSION ?= $(shell cat VERSION)
 
232
FILE = qemu-$(VERSION)
77
233
 
78
234
# tar release (use 'make -k tar' on a checkouted tree)
79
235
tar:
84
240
 
85
241
# generate a binary distribution
86
242
tarbin:
87
 
        ( cd / ; tar zcvf ~/qemu-$(VERSION)-i386.tar.gz \
88
 
        $(prefix)/bin/qemu $(prefix)/bin/qemu-fast \
89
 
        $(prefix)/bin/qemu-system-ppc \
90
 
        $(prefix)/bin/qemu-i386 \
91
 
        $(prefix)/bin/qemu-arm \
92
 
        $(prefix)/bin/qemu-sparc \
93
 
        $(prefix)/bin/qemu-ppc \
94
 
        $(prefix)/bin/qemu-mkcow \
95
 
        $(sharedir)/bios.bin \
96
 
        $(sharedir)/vgabios.bin \
97
 
        $(sharedir)/linux_boot.bin \
 
243
        ( cd / ; tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
 
244
        $(bindir)/qemu \
 
245
        $(bindir)/qemu-system-ppc \
 
246
        $(bindir)/qemu-system-ppc64 \
 
247
        $(bindir)/qemu-system-ppcemb \
 
248
        $(bindir)/qemu-system-sparc \
 
249
        $(bindir)/qemu-system-x86_64 \
 
250
        $(bindir)/qemu-system-mips \
 
251
        $(bindir)/qemu-system-mipsel \
 
252
        $(bindir)/qemu-system-mips64 \
 
253
        $(bindir)/qemu-system-mips64el \
 
254
        $(bindir)/qemu-system-arm \
 
255
        $(bindir)/qemu-system-m68k \
 
256
        $(bindir)/qemu-system-sh4 \
 
257
        $(bindir)/qemu-system-sh4eb \
 
258
        $(bindir)/qemu-system-cris \
 
259
        $(bindir)/qemu-i386 \
 
260
        $(bindir)/qemu-x86_64 \
 
261
        $(bindir)/qemu-arm \
 
262
        $(bindir)/qemu-armeb \
 
263
        $(bindir)/qemu-sparc \
 
264
        $(bindir)/qemu-sparc32plus \
 
265
        $(bindir)/qemu-sparc64 \
 
266
        $(bindir)/qemu-ppc \
 
267
        $(bindir)/qemu-ppc64 \
 
268
        $(bindir)/qemu-ppc64abi32 \
 
269
        $(bindir)/qemu-mips \
 
270
        $(bindir)/qemu-mipsel \
 
271
        $(bindir)/qemu-alpha \
 
272
        $(bindir)/qemu-m68k \
 
273
        $(bindir)/qemu-sh4 \
 
274
        $(bindir)/qemu-sh4eb \
 
275
        $(bindir)/qemu-cris \
 
276
        $(bindir)/qemu-img \
 
277
        $(datadir)/bios.bin \
 
278
        $(datadir)/vgabios.bin \
 
279
        $(datadir)/vgabios-cirrus.bin \
 
280
        $(datadir)/ppc_rom.bin \
 
281
        $(datadir)/video.x \
 
282
        $(datadir)/openbios-sparc32 \
 
283
        $(datadir)/pxe-ne2k_pci.bin \
 
284
        $(datadir)/pxe-rtl8139.bin \
 
285
        $(datadir)/pxe-pcnet.bin \
98
286
        $(docdir)/qemu-doc.html \
99
287
        $(docdir)/qemu-tech.html \
100
 
        $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-mkcow.1 )
 
288
        $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 )
101
289
 
102
290
ifneq ($(wildcard .depend),)
103
291
include .depend
104
292
endif
 
293
 
 
294
# Include automatically generated dependency files
 
295
-include $(wildcard *.d audio/*.d slirp/*.d)