summaryrefslogtreecommitdiff
path: root/com32/hdt/Makefile
blob: 4056c76c8df09a205da4049753acdf13a08329d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
## -----------------------------------------------------------------------
##
##   Copyright 2001-2009 H. Peter Anvin - All Rights Reserved
##   Copyright 2009 Intel Corporation; author: H. Peter Anvin
##
##   This program is free software; you can redistribute it and/or modify
##   it under the terms of the GNU General Public License as published by
##   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
##   Boston MA 02111-1307, USA; either version 2 of the License, or
##   (at your option) any later version; incorporated herein by reference.
##
## -----------------------------------------------------------------------

##
## samples for syslinux users
##

topdir = ../..
include $(topdir)/MCONFIG.embedded

MODULES = hdt.c32

INCLUDES   = -I$(com32)/include -I$(com32)/cmenu/libmenu -I$(com32)/gplinclude\
	     -I$(com32)/libutil/include

LIBGCC    := $(shell $(CC) $(GCCOPT) --print-libgcc)
LIB	   = liboldcom32.a

com32	= $(topdir)/com32
LIBS	= $(LIB) $(com32)/cmenu/libmenu/libmenu.a \
	  $(com32)/gpllib/libcom32gpl.a \
	  $(com32)/libutil/libutil_com.a $(com32)/lib/libcom32.a \
          $(LIBGCC)

LDFLAGS	= -m elf_i386 -T $(com32)/lib/com32.ld

all:  $(MODULES) $(LIB)

.PRECIOUS: %.o
%.o: %.S
	$(CC) $(SFLAGS) -c -o $@ $<

.PRECIOUS: %.o
%.o: %.c
	@$(CC) $(CFLAGS) -std=gnu99  -D__COM32__ -c -o $@ $<

.PRECIOUS: %.elf
%.elf: c32entry.o %.o $(LIB)
	@$(LD) -Ttext 0x101000 -e _start -o $@ $^

hdt.elf: hdt.o hdt-ata.o hdt-menu.o hdt-menu-pci.o hdt-menu-kernel.o \
	hdt-menu-disk.o hdt-menu-dmi.o hdt-menu-processor.o \
	hdt-menu-syslinux.o hdt-menu-about.o \
	hdt-cli.o hdt-common.o hdt-cli-pci.o hdt-cli-dmi.o \
	hdt-cli-cpu.o hdt-cli-pxe.o hdt-cli-kernel.o \
	hdt-cli-syslinux.o hdt-cli-vesa.o\
	hdt-menu-pxe.o hdt-menu-summary.o hdt-menu-vesa.o\
	$(LIBS)
	@$(LD) $(LDFLAGS) -o $@ $^

%.c32: %.elf
	@$(OBJCOPY) -O binary $< $@

%.com: %.asm
	@$(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $<

$(LIB):
	@rm -f $@
	@$(AR) cq $@ $^
	@$(RANLIB) $@

tidy dist:
	@rm -f *.o *.a *.lst *.elf

install: all

# Don't specify *.com since mdiskchk.com can't be built using Linux tools
clean: tidy
	@rm -f *.o *.c32 *.c~ *.h~ Makefile~

spotless: clean