2003-08-11 01:39:31 +04:00
|
|
|
include config-host.mak
|
2003-02-19 02:35:48 +03:00
|
|
|
|
2003-03-07 02:23:54 +03:00
|
|
|
CFLAGS=-Wall -O2 -g
|
2003-02-19 01:55:36 +03:00
|
|
|
LDFLAGS=-g
|
2003-02-19 02:35:48 +03:00
|
|
|
LIBS=
|
2003-03-03 17:32:43 +03:00
|
|
|
DEFINES+=-D_GNU_SOURCE
|
2003-10-01 00:54:24 +04:00
|
|
|
TOOLS=qemu-mkcow
|
2003-05-25 20:41:18 +04:00
|
|
|
|
2003-08-11 01:39:31 +04:00
|
|
|
all: dyngen $(TOOLS) qemu-doc.html
|
|
|
|
for d in $(TARGET_DIRS); do \
|
|
|
|
make -C $$d $@ || exit 1 ; \
|
|
|
|
done
|
2003-07-06 21:15:21 +04:00
|
|
|
|
2003-10-01 00:54:24 +04:00
|
|
|
qemu-mkcow: qemu-mkcow.o
|
2003-08-11 01:39:31 +04:00
|
|
|
$(HOST_CC) -o $@ $^ $(LIBS)
|
2003-06-16 00:25:43 +04:00
|
|
|
|
2003-08-11 01:39:31 +04:00
|
|
|
dyngen: dyngen.o
|
|
|
|
$(HOST_CC) -o $@ $^ $(LIBS)
|
2003-06-16 00:25:43 +04:00
|
|
|
|
2003-02-19 01:55:36 +03:00
|
|
|
%.o: %.c
|
2003-08-11 01:39:31 +04:00
|
|
|
$(HOST_CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
|
2003-02-19 01:55:36 +03:00
|
|
|
|
|
|
|
clean:
|
2003-08-12 03:01:33 +04:00
|
|
|
# avoid old build problems by removing potentially incorrect old files
|
|
|
|
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
|
2003-08-11 01:39:31 +04:00
|
|
|
rm -f *.o *.a $(TOOLS) dyngen TAGS
|
|
|
|
for d in $(TARGET_DIRS); do \
|
|
|
|
make -C $$d $@ || exit 1 ; \
|
|
|
|
done
|
2003-02-19 01:55:36 +03:00
|
|
|
|
2003-03-07 02:23:54 +03:00
|
|
|
distclean: clean
|
2003-08-12 03:01:33 +04:00
|
|
|
rm -f config-host.mak config-host.h
|
2003-08-11 03:41:46 +04:00
|
|
|
for d in $(TARGET_DIRS); do \
|
|
|
|
rm -f $$d/config.h $$d/config.mak || exit 1 ; \
|
|
|
|
done
|
2003-03-07 02:23:54 +03:00
|
|
|
|
2003-08-11 01:39:31 +04:00
|
|
|
install: all
|
2003-06-27 16:02:03 +04:00
|
|
|
mkdir -p $(prefix)/bin
|
2003-08-11 01:39:31 +04:00
|
|
|
install -m 755 -s $(TOOLS) $(prefix)/bin
|
|
|
|
for d in $(TARGET_DIRS); do \
|
|
|
|
make -C $$d $@ || exit 1 ; \
|
|
|
|
done
|
2003-03-22 20:31:19 +03:00
|
|
|
|
2003-03-01 20:13:26 +03:00
|
|
|
# various test targets
|
2003-08-11 01:39:31 +04:00
|
|
|
test speed: all
|
2003-03-01 20:13:26 +03:00
|
|
|
make -C tests $@
|
2003-02-19 01:55:36 +03:00
|
|
|
|
2003-03-01 20:13:26 +03:00
|
|
|
TAGS:
|
2003-04-30 00:41:16 +04:00
|
|
|
etags *.[ch] tests/*.[ch]
|
2003-02-19 01:55:36 +03:00
|
|
|
|
2003-03-23 23:17:16 +03:00
|
|
|
# documentation
|
|
|
|
qemu-doc.html: qemu-doc.texi
|
|
|
|
texi2html -monolithic -number $<
|
|
|
|
|
2003-10-01 00:54:24 +04:00
|
|
|
FILE=qemu-$(shell cat VERSION)
|
2003-03-03 18:02:29 +03:00
|
|
|
|
2003-10-01 00:54:24 +04:00
|
|
|
# tar release (use 'make -k tar' on a checkouted tree)
|
2003-03-03 18:02:29 +03:00
|
|
|
tar:
|
|
|
|
rm -rf /tmp/$(FILE)
|
2003-10-01 00:54:24 +04:00
|
|
|
cp -r . /tmp/$(FILE)
|
2003-03-03 18:02:29 +03:00
|
|
|
( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
|
|
|
|
rm -rf /tmp/$(FILE)
|
|
|
|
|
2003-03-25 00:58:34 +03:00
|
|
|
# generate a binary distribution including the test binary environnment
|
|
|
|
BINPATH=/usr/local/qemu-i386
|
|
|
|
|
|
|
|
tarbin:
|
2003-04-11 05:12:28 +04:00
|
|
|
tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
|
|
|
|
$(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
|
|
|
|
tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
|
|
|
|
$(BINPATH)/wine
|
2003-03-25 00:58:34 +03:00
|
|
|
|
2003-02-19 01:55:36 +03:00
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|