Lots of fixes to make the graphical menu actually work.
[syslinux.git] / com32 / modules / Makefile
blobc9f0a6ea7598043c3a711249521a31428c54d08c
1 ## -----------------------------------------------------------------------
2 ##
3 ## Copyright 2001-2004 H. Peter Anvin - All Rights Reserved
4 ##
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 ## Boston MA 02111-1307, USA; either version 2 of the License, or
9 ## (at your option) any later version; incorporated herein by reference.
11 ## -----------------------------------------------------------------------
14 ## samples for syslinux users
17 gcc_ok = $(shell if gcc $(1) -c -x c /dev/null -o /dev/null 2>/dev/null; \
18 then echo $(1); else echo $(2); fi)
20 M32 := $(call gcc_ok,-m32,)
22 CC = gcc
23 LD = ld -m elf_i386
24 AR = ar
25 NASM = nasm
26 RANLIB = ranlib
27 CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -W -Wall -march=i386 -Os -fomit-frame-pointer -I../libutil/include -I../include -D__COM32__
28 LNXCFLAGS = -W -Wall -O -g -I../libutil/include
29 LNXSFLAGS = -g
30 LNXLDFLAGS = -g
31 SFLAGS = -D__COM32__ -march=i386
32 LDFLAGS = -T ../lib/com32.ld
33 OBJCOPY = objcopy
34 PPMTOLSS16 = ../ppmtolss16
35 LIBGCC := $(shell $(CC) --print-libgcc)
36 LIBS = ../libutil/libutil_com.a ../lib/libcom32.a $(LIBGCC)
37 LNXLIBS = ../libutil/libutil_lnx.a
39 .SUFFIXES: .lss .c .o .elf .c32 .lnx
41 BINDIR = /usr/bin
42 LIBDIR = /usr/lib
43 AUXDIR = $(LIBDIR)/syslinux
44 INCDIR = /usr/include
45 COM32DIR = $(AUXDIR)/com32
47 MODULES = chain.c32 menu.c32 vesamenu.c32 ethersel.c32 mboot.c32 dmitest.c32
48 TESTFILES =
50 all: $(MODULES) $(TESTFILES)
52 .PRECIOUS: %.o
53 %.o: %.S
54 $(CC) $(SFLAGS) -c -o $@ $<
56 .PRECIOUS: %.o
57 %.o: %.c
58 $(CC) $(CFLAGS) -c -o $@ $<
60 .PRECIOUS: %.elf
61 %.elf: %.o $(LIBS)
62 $(LD) $(LDFLAGS) -o $@ $^
64 .PRECIOUS: %.lo
65 %.lo: %.S
66 $(CC) $(LNXSFLAGS) -c -o $@ $<
68 .PRECIOUS: %.lo
69 %.lo: %.c
70 $(CC) $(LNXCFLAGS) -c -o $@ $<
72 .PRECIOUS: %.lnx
73 %.lnx: %.lo $(LNXLIBS)
74 $(CC) $(LNXLDFLAGS) -o $@ $^
76 %.c32: %.elf
77 $(OBJCOPY) -O binary $< $@
79 dmitest.elf : dmitest.o dmi_utils.o dmi.o $(LIBS)
80 $(LD) $(LDFLAGS) -o $@ $^
82 menu.elf : menu.o menumain.o readconfig.o $(LIBS)
83 $(LD) $(LDFLAGS) -o $@ $^
85 vesamenu.elf : vesamenu.o menumain.o readconfig.o $(LIBS)
86 $(LD) $(LDFLAGS) -o $@ $^
88 menu.lnx : menu.lo readconfig.lo $(LNXLIBS)
89 $(CC) $(LNXLDFLAGS) -o $@ $^
91 tidy:
92 rm -f *.o *.lo *.a *.lst *.elf
94 clean: tidy
95 rm -f *.lss *.c32 *.lnx *.com
97 spotless: clean
98 rm -f *~ \#*
100 install: all
101 mkdir -m 755 -p $(INSTALLROOT)$(AUXDIR)
102 install -m 644 $(MODULES) $(INSTALLROOT)$(AUXDIR)