/[public]/qemu-start/tags/VERSION_2_0/Makefile
ViewVC logotype

Contents of /qemu-start/tags/VERSION_2_0/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 316 - (show annotations)
Wed Apr 9 19:00:46 2008 UTC (15 years, 11 months ago) by (unknown author)
File size: 1183 byte(s)
This commit was manufactured by cvs2svn to create tag 'VERSION_2_0'.
1 DESTDIR=
2 BINDIR=/usr/bin
3 MANDIR=/usr/share/man
4 QEMUSTARTGROUP=emulator
5
6 PACKAGE=qemu-start
7 VERSION=2.0
8 FILES=AUTHORS COPYING NEWS README Makefile qemu-start.c qemu-start.1 qemu-start.ggo
9 BASENAME=$(PACKAGE)-$(VERSION)
10
11 CFLAGS=-Wall -W
12
13 all: qemu-start
14
15 qemu-start : qemu-start.o cmdline.o qemu-start.c cmdline.c cmdline.h qemu-start.ggo
16 $(CC) -o qemu-start qemu-start.o cmdline.o
17
18 cmdline.o : cmdline.c cmdline.h qemu-start.ggo
19
20 qemu-start.o: qemu-start.c cmdline.h qemu-start.ggo
21
22 cmdline.c : qemu-start.ggo
23 gengetopt -i qemu-start.ggo -u
24
25 # Automake FAQ: make cmdline.h depend on cmdline.c to compensate for parallel
26 # make problems (gengetopt produces two result files).
27 cmdline.h : cmdline.c qemu-start.ggo
28 gengetopt -i qemu-start.ggo -u
29
30 install:
31 install -d $(DESTDIR)$(BINDIR)
32 install -o root -g $(QEMUSTARTGROUP) -m 4710 qemu-start $(DESTDIR)$(BINDIR)
33 install -d $(DESTDIR)$(MANDIR)/man1
34 install -o root -g root -m 755 qemu-start.1 $(DESTDIR)$(MANDIR)/man1
35
36 clean:
37 $(RM) qemu-start
38 $(RM) cmdline.o
39 $(RM) qemu-start.o
40 $(RM) cmdline.c
41 $(RM) cmdline.h
42
43 package:
44 ln -s . $(BASENAME)
45 tar cfvzp $(BASENAME).tar.gz $(addprefix $(BASENAME)/,$(FILES))
46 $(RM) $(BASENAME)

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26