syslinux-3.08-2 sources from FC4
[bootcd.git] / syslinux / com32 / libutil / Makefile
1 #ident "$Id: Makefile,v 1.8 2005/01/21 00:49:46 hpa Exp $"
2 ## -----------------------------------------------------------------------
3 ##   
4 ##   Copyright 2001-2004 H. Peter Anvin - All Rights Reserved
5 ##
6 ##   Permission is hereby granted, free of charge, to any person
7 ##   obtaining a copy of this software and associated documentation
8 ##   files (the "Software"), to deal in the Software without
9 ##   restriction, including without limitation the rights to use,
10 ##   copy, modify, merge, publish, distribute, sublicense, and/or
11 ##   sell copies of the Software, and to permit persons to whom
12 ##   the Software is furnished to do so, subject to the following
13 ##   conditions:
14 ##   
15 ##   The above copyright notice and this permission notice shall
16 ##   be included in all copies or substantial portions of the Software.
17 ##   
18 ##   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 ##   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20 ##   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 ##   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 ##   HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 ##   WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 ##   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25 ##   OTHER DEALINGS IN THE SOFTWARE.
26 ##
27 ## -----------------------------------------------------------------------
28
29 ##
30 ## Utility companion library for the COM32 library
31 ##
32
33 gcc_ok   = $(shell if gcc $(1) -c -x c /dev/null -o /dev/null 2>/dev/null; \
34                    then echo $(1); else echo $(2); fi)
35
36 M32     := $(call gcc_ok,-m32,)
37
38 CC         = gcc
39 LD         = ld -m elf_i386
40 AR         = ar
41 NASM       = nasm
42 RANLIB     = ranlib
43 CFLAGS     = $(M32) -mregparm=3 -DREGPARM=3 -D__COM32__ -W -Wall -march=i386 -Os -fomit-frame-pointer -I./include -I../include
44 SFLAGS     = $(M32) -D__COM32__ -march=i386
45 LDFLAGS    = -T ../lib/com32.ld
46 LNXCFLAGS  = -I./include -W -Wall -O -g
47 LNXSFLAGS  = -g
48 LNXLDFLAGS = -g
49 OBJCOPY    = objcopy
50 LIBOBJS    = ansiline.o ansiraw.o get_key.o idle.o sha1hash.o unbase64.o
51 LNXLIBOBJS = $(patsubst %.o,%.lo,$(LIBOBJS))
52
53 .SUFFIXES: .lss .c .lo .o .elf .c32 .lnx
54
55 BINDIR   = /usr/bin
56 LIBDIR   = /usr/lib
57 AUXDIR   = $(LIBDIR)/syslinux
58 INCDIR   = /usr/include
59 COM32DIR = $(AUXDIR)/com32
60
61 all: libutil_com.a libutil_lnx.a
62
63 libutil_com.a: $(LIBOBJS)
64         rm -f $@
65         $(AR) cq $@ $(LIBOBJS)
66         $(RANLIB) $@
67
68 libutil_lnx.a: $(LNXLIBOBJS)
69         rm -f $@
70         $(AR) cq $@ $(LNXLIBOBJS)
71         $(RANLIB) $@
72
73 .PRECIOUS: %.o
74 %.o: %.S
75         $(CC) $(SFLAGS) -c -o $@ $<
76
77 .PRECIOUS: %.o
78 %.o: %.c
79         $(CC) $(CFLAGS) -c -o $@ $<
80
81 .PRECIOUS: %.elf
82 %.elf: %.o $(LIB)
83         $(LD) $(LDFLAGS) -o $@ $^ $(LIBGCC)
84
85 .PRECIOUS: %.lo
86 %.lo: %.S
87         $(CC) $(LNXSFLAGS) -c -o $@ $<
88
89 .PRECIOUS: %.lo
90 %.lo: %.c
91         $(CC) $(LNXCFLAGS) -c -o $@ $<
92
93 .PRECIOUS: %.lnx
94 %.lnx: %.lo
95         $(CC) $(LNXCFLAGS) -o $@ $^
96
97 %.c32: %.elf
98         $(OBJCOPY) -O binary $< $@
99
100 tidy:
101         rm -f *.o *.lo *.lst *.elf
102
103 clean: tidy
104         rm -f *.lss *.a *.c32 *.lnx *.com
105
106 spotless: clean
107         rm -f *~ \#*
108
109 install: all
110         mkdir -m 755 -p $(INSTALLROOT)$(COM32DIR)
111         install -m 644 libutil_com.a libutil_lnx.a $(INSTALLROOT)$(COM32DIR)
112