Fix Makefile install targets
[syslinux.git] / Makefile
blob499ca5e3495553443e964408c43ae61e37e28b23
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.
12 ## -----------------------------------------------------------------------
15 # Main Makefile for SYSLINUX
17 topdir = .
18 MAKEDIR = $(topdir)/mk
19 include $(MAKEDIR)/syslinux.mk
20 -include $(topdir)/version.mk
23 # The BTARGET refers to objects that are derived from ldlinux.asm; we
24 # like to keep those uniform for debugging reasons; however, distributors
25 # want to recompile the installers (ITARGET).
27 # BOBJECTS and IOBJECTS are the same thing, except used for
28 # installation, so they include objects that may be in subdirectories
29 # with their own Makefiles. Finally, there is a list of those
30 # directories.
33 # List of module objects that should be installed for all derivatives
34 MODULES = memdisk/memdisk memdump/memdump.com modules/*.com \
35 com32/menu/*.c32 com32/modules/*.c32 com32/mboot/*.c32 \
36 com32/hdt/*.c32 com32/rosh/*.c32 com32/gfxboot/*.c32 \
37 com32/sysdump/*.c32 com32/lua/src/*.c32 com32/chain/*.c32 \
38 com32/lib/*.c32 com32/libutil/*.c32 com32/gpllib/*.c32 \
39 com32/elflink/ldlinux/*.c32
41 # syslinux.exe is BTARGET so as to not require everyone to have the
42 # mingw suite installed
43 BTARGET = version.gen version.h version.mk
44 BOBJECTS = $(BTARGET) \
45 mbr/*.bin \
46 core/pxelinux.0 core/isolinux.bin core/isolinux-debug.bin \
47 gpxe/gpxelinux.0 dos/syslinux.com \
48 win32/syslinux.exe win64/syslinux64.exe \
49 dosutil/*.com dosutil/*.sys \
50 $(MODULES)
52 # BSUBDIRs build the on-target binary components.
53 # ISUBDIRs build the installer (host) components.
55 # Note: libinstaller is both a BSUBDIR and an ISUBDIR. It contains
56 # files that depend only on the B phase, but may have to be regenerated
57 # for "make installer".
58 BSUBDIRS = codepage com32 lzo core memdisk modules mbr memdump gpxe sample \
59 diag libinstaller dos win32 win64 dosutil
60 ITARGET =
61 IOBJECTS = $(ITARGET) \
62 utils/gethostip utils/isohybrid utils/mkdiskimage \
63 mtools/syslinux linux/syslinux extlinux/extlinux
64 ISUBDIRS = libinstaller mtools linux extlinux utils
66 # Things to install in /usr/bin
67 INSTALL_BIN = mtools/syslinux
68 # Things to install in /sbin
69 INSTALL_SBIN = extlinux/extlinux
70 # Things to install in /usr/lib/syslinux
71 INSTALL_AUX = core/pxelinux.0 gpxe/gpxelinux.0 gpxe/gpxelinuxk.0 \
72 core/isolinux.bin core/isolinux-debug.bin \
73 dos/syslinux.com \
74 mbr/*.bin $(MODULES)
75 INSTALL_AUX_OPT = win32/syslinux.exe win64/syslinux64.exe
76 INSTALL_DIAG = diag/mbr/handoff.bin \
77 diag/geodsp/geodsp1s.img.xz diag/geodsp/geodspms.img.xz
79 # These directories manage their own installables
80 INSTALLSUBDIRS = com32 utils dosutil
82 # Things to install in /boot/extlinux
83 EXTBOOTINSTALL = $(MODULES)
85 # Things to install in /tftpboot
86 NETINSTALLABLE = core/pxelinux.0 gpxe/gpxelinux.0 \
87 $(MODULES)
89 all:
90 $(MAKE) all-local
91 set -e ; for i in $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done
92 -ls -l $(BOBJECTS) $(IOBJECTS)
94 all-local: $(BTARGET) $(ITARGET)
96 installer:
97 $(MAKE) installer-local
98 set -e ; for i in $(ISUBDIRS); do $(MAKE) -C $$i all ; done
99 -ls -l $(BOBJECTS) $(IOBJECTS)
101 installer-local: $(ITARGET) $(BINFILES)
103 strip:
104 $(MAKE) strip-local
105 set -e ; for i in $(ISUBDIRS); do $(MAKE) -C $$i strip ; done
106 -ls -l $(BOBJECTS) $(IOBJECTS)
108 strip-local:
110 version.gen: version version.pl
111 $(PERL) version.pl $< $@ '%define < @'
112 version.h: version version.pl
113 $(PERL) version.pl $< $@ '#define < @'
114 version.mk: version version.pl
115 $(PERL) version.pl $< $@ '< := @'
117 local-install: installer
118 mkdir -m 755 -p $(INSTALLROOT)$(BINDIR)
119 install -m 755 -c $(INSTALL_BIN) $(INSTALLROOT)$(BINDIR)
120 mkdir -m 755 -p $(INSTALLROOT)$(SBINDIR)
121 install -m 755 -c $(INSTALL_SBIN) $(INSTALLROOT)$(SBINDIR)
122 mkdir -m 755 -p $(INSTALLROOT)$(AUXDIR)
123 install -m 644 -c $(INSTALL_AUX) $(INSTALLROOT)$(AUXDIR)
124 -install -m 644 -c $(INSTALL_AUX_OPT) $(INSTALLROOT)$(AUXDIR)
125 mkdir -m 755 -p $(INSTALLROOT)$(DIAGDIR)
126 install -m 644 -c $(INSTALL_DIAG) $(INSTALLROOT)$(DIAGDIR)
127 mkdir -m 755 -p $(INSTALLROOT)$(MANDIR)/man1
128 install -m 644 -c man/*.1 $(INSTALLROOT)$(MANDIR)/man1
129 : mkdir -m 755 -p $(INSTALLROOT)$(MANDIR)/man8
130 : install -m 644 -c man/*.8 $(INSTALLROOT)$(MANDIR)/man8
132 install: local-install
133 set -e ; for i in $(INSTALLSUBDIRS) ; do $(MAKE) -C $$i $@ ; done
135 netinstall: installer
136 mkdir -p $(INSTALLROOT)$(TFTPBOOT)
137 install -m 644 $(NETINSTALLABLE) $(INSTALLROOT)$(TFTPBOOT)
139 extbootinstall: installer
140 mkdir -m 755 -p $(INSTALLROOT)$(EXTLINUXDIR)
141 install -m 644 $(EXTBOOTINSTALL) $(INSTALLROOT)$(EXTLINUXDIR)
143 install-all: install netinstall extbootinstall
145 local-tidy:
146 rm -f *.o *.elf *_bin.c stupid.* patch.offset
147 rm -f *.lsr *.lst *.map *.sec *.tmp
148 rm -f $(OBSOLETE)
150 tidy: local-tidy
151 set -e ; for i in $(BESUBDIRS) $(IESUBDIRS) $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done
153 local-clean:
154 rm -f $(ITARGET)
156 clean: local-tidy local-clean
157 set -e ; for i in $(BESUBDIRS) $(IESUBDIRS) $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done
159 local-dist:
160 find . \( -name '*~' -o -name '#*' -o -name core \
161 -o -name '.*.d' -o -name .depend \) -type f -print0 \
162 | xargs -0rt rm -f
164 dist: local-dist local-tidy
165 set -e ; for i in $(BESUBDIRS) $(IESUBDIRS) $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done
167 local-spotless:
168 rm -f $(BTARGET) .depend *.so.*
170 spotless: local-clean local-dist local-spotless
171 set -e ; for i in $(BESUBDIRS) $(IESUBDIRS) $(BSUBDIRS) $(ISUBDIRS) ; do $(MAKE) -C $$i $@ ; done
173 # Shortcut to build linux/syslinux using klibc
174 klibc:
175 $(MAKE) clean
176 $(MAKE) CC=klcc ITARGET= ISUBDIRS='linux extlinux' BSUBDIRS=
178 # Hook to add private Makefile targets for the maintainer.
179 -include Makefile.private