Add diag/ targets into top Makefile for install target
[profile/ivi/syslinux.git] / Makefile
1 ## -----------------------------------------------------------------------
2 ##
3 ##   Copyright 1998-2009 H. Peter Anvin - All Rights Reserved
4 ##   Copyright 2009-2010 Intel Corporation; author: H. Peter Anvin
5 ##
6 ##   This program is free software; you can redistribute it and/or modify
7 ##   it under the terms of the GNU General Public License as published by
8 ##   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9 ##   Boston MA 02111-1307, USA; either version 2 of the License, or
10 ##   (at your option) any later version; incorporated herein by reference.
11 ##
12 ## -----------------------------------------------------------------------
13
14 #
15 # Main Makefile for SYSLINUX
16 #
17 topdir = .
18 include $(topdir)/MCONFIG
19 -include $(topdir)/version.mk
20
21 #
22 # The BTARGET refers to objects that are derived from ldlinux.asm; we
23 # like to keep those uniform for debugging reasons; however, distributors
24 # want to recompile the installers (ITARGET).
25 #
26 # BOBJECTS and IOBJECTS are the same thing, except used for
27 # installation, so they include objects that may be in subdirectories
28 # with their own Makefiles.  Finally, there is a list of those
29 # directories.
30 #
31
32 # List of module objects that should be installed for all derivatives
33 MODULES = memdisk/memdisk memdump/memdump.com modules/*.com \
34         com32/menu/*.c32 com32/modules/*.c32 com32/mboot/*.c32 \
35         com32/hdt/*.c32 com32/rosh/*.c32 com32/gfxboot/*.c32 \
36         com32/sysdump/*.c32 com32/lua/src/*.c32
37
38 # syslinux.exe is BTARGET so as to not require everyone to have the
39 # mingw suite installed
40 BTARGET  = version.gen version.h version.mk
41 BOBJECTS = $(BTARGET) \
42         mbr/mbr.bin mbr/altmbr.bin mbr/gptmbr.bin \
43         mbr/mbr_c.bin mbr/altmbr_c.bin mbr/gptmbr_c.bin \
44         mbr/mbr_f.bin mbr/altmbr_f.bin mbr/gptmbr_f.bin \
45         core/pxelinux.0 core/isolinux.bin core/isolinux-debug.bin \
46         gpxe/gpxelinux.0 dos/syslinux.com \
47         win32/syslinux.exe win64/syslinux64.exe \
48         dosutil/*.com dosutil/*.sys \
49         $(MODULES)
50
51 # BSUBDIRs build the on-target binary components.
52 # ISUBDIRs build the installer (host) components.
53 #
54 # Note: libinstaller is both a BSUBDIR and an ISUBDIR.  It contains
55 # files that depend only on the B phase, but may have to be regenerated
56 # for "make installer".
57 BSUBDIRS = codepage com32 lzo core memdisk modules mbr memdump gpxe sample \
58            libinstaller dos win32 win64 dosutil
59 ITARGET  =
60 IOBJECTS = $(ITARGET) \
61         utils/gethostip utils/isohybrid utils/mkdiskimage \
62         mtools/syslinux linux/syslinux extlinux/extlinux
63 ISUBDIRS = libinstaller mtools linux extlinux utils
64
65 # Things to install in /usr/bin
66 INSTALL_BIN   = mtools/syslinux
67 # Things to install in /sbin
68 INSTALL_SBIN  = extlinux/extlinux
69 # Things to install in /usr/lib/syslinux
70 INSTALL_AUX   = core/pxelinux.0 gpxe/gpxelinux.0 core/isolinux.bin \
71                 core/isolinux-debug.bin \
72                 dos/syslinux.com \
73                 mbr/*.bin $(MODULES)
74 INSTALL_AUX_OPT = win32/syslinux.exe win64/syslinux64.exe
75 INSTALL_DIAG  = diag/mbr/handoff.bin
76
77 # These directories manage their own installables
78 INSTALLSUBDIRS = com32 utils dosutil
79
80 # Things to install in /boot/extlinux
81 EXTBOOTINSTALL = $(MODULES)
82
83 # Things to install in /tftpboot
84 NETINSTALLABLE = core/pxelinux.0 gpxe/gpxelinux.0 \
85                  $(MODULES)
86
87 all:
88         $(MAKE) all-local
89         set -e ; for i in $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done
90         -ls -l $(BOBJECTS) $(IOBJECTS)
91
92 all-local: $(BTARGET) $(ITARGET)
93
94 installer:
95         $(MAKE) installer-local
96         set -e ; for i in $(ISUBDIRS); do $(MAKE) -C $$i all ; done
97         -ls -l $(BOBJECTS) $(IOBJECTS)
98
99 installer-local: $(ITARGET) $(BINFILES)
100
101 version.gen: version version.pl
102         $(PERL) version.pl $< $@ '%define < @'
103 version.h: version version.pl
104         $(PERL) version.pl $< $@ '#define < @'
105 version.mk: version version.pl
106         $(PERL) version.pl $< $@ '< := @'
107
108 local-install: installer
109         mkdir -m 755 -p $(INSTALLROOT)$(BINDIR)
110         install -m 755 -c $(INSTALL_BIN) $(INSTALLROOT)$(BINDIR)
111         mkdir -m 755 -p $(INSTALLROOT)$(SBINDIR)
112         install -m 755 -c $(INSTALL_SBIN) $(INSTALLROOT)$(SBINDIR)
113         mkdir -m 755 -p $(INSTALLROOT)$(AUXDIR)
114         install -m 644 -c $(INSTALL_AUX) $(INSTALLROOT)$(AUXDIR)
115         -install -m 644 -c $(INSTALL_AUX_OPT) $(INSTALLROOT)$(AUXDIR)
116         mkdir -m 755 -p $(INSTALLROOT)$(DIAGDIR)
117         install -m 644 -c $(INSTALL_DIAG) $(INSTALLROOT)$(DIAGDIR)
118         mkdir -m 755 -p $(INSTALLROOT)$(MANDIR)/man1
119         install -m 644 -c man/*.1 $(INSTALLROOT)$(MANDIR)/man1
120         : mkdir -m 755 -p $(INSTALLROOT)$(MANDIR)/man8
121         : install -m 644 -c man/*.8 $(INSTALLROOT)$(MANDIR)/man8
122
123 install: local-install
124         set -e ; for i in $(INSTALLSUBDIRS) ; do $(MAKE) -C $$i $@ ; done
125
126 netinstall: installer
127         mkdir -p $(INSTALLROOT)$(TFTPBOOT)
128         install -m 644 $(NETINSTALLABLE) $(INSTALLROOT)$(TFTPBOOT)
129
130 extbootinstall: installer
131         mkdir -m 755 -p $(INSTALLROOT)$(EXTLINUXDIR)
132         install -m 644 $(EXTBOOTINSTALL) $(INSTALLROOT)$(EXTLINUXDIR)
133
134 install-all: install netinstall extbootinstall
135
136 local-tidy:
137         rm -f *.o *.elf *_bin.c stupid.* patch.offset
138         rm -f *.lsr *.lst *.map *.sec *.tmp
139         rm -f $(OBSOLETE)
140
141 tidy: local-tidy
142         set -e ; for i in $(BESUBDIRS) $(IESUBDIRS) $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done
143
144 local-clean:
145         rm -f $(ITARGET)
146
147 clean: local-tidy local-clean
148         set -e ; for i in $(BESUBDIRS) $(IESUBDIRS) $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done
149
150 local-dist:
151         find . \( -name '*~' -o -name '#*' -o -name core \
152                 -o -name '.*.d' -o -name .depend \) -type f -print0 \
153         | xargs -0rt rm -f
154
155 dist: local-dist local-tidy
156         set -e ; for i in $(BESUBDIRS) $(IESUBDIRS) $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done
157
158 local-spotless:
159         rm -f $(BTARGET) .depend *.so.*
160
161 spotless: local-clean local-dist local-spotless
162         set -e ; for i in $(BESUBDIRS) $(IESUBDIRS) $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done
163
164 # Shortcut to build linux/syslinux using klibc
165 klibc:
166         $(MAKE) clean
167         $(MAKE) CC=klcc ITARGET= ISUBDIRS='linux extlinux' BSUBDIRS=
168
169 # Hook to add private Makefile targets for the maintainer.
170 -include Makefile.private