Merge gpxe-for-syslinux
[syslinux.git] / sample / Makefile
blob3ed7907e1388f1c2e5f50cc7bfe69f0ba6c75654
1 ## -----------------------------------------------------------------------
2 ##
3 ## Copyright 2001-2008 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 TMPFILE = $(shell mktemp /tmp/gcc_ok.XXXXXX)
19 gcc_ok = $(shell tmpf=$(TMPFILE); if $(CC) $(1) -c -x c /dev/null -o $$tmpf 2>/dev/null; \
20 then echo $(1); else echo $(2); fi; rm -f $$tmpf)
22 M32 := $(call gcc_ok,-m32,) $(call gcc_ok,-ffreestanding,) $(call gcc_ok,-fno-stack-protector,)
24 CC = gcc
25 LD = ld -m elf_i386
26 AR = ar
27 NASM = nasm
28 NASMOPT = -O9999
29 RANLIB = ranlib
30 CFLAGS = $(M32) -W -Wall -march=i386 -Os -fomit-frame-pointer -I../com32/include
31 SFLAGS = $(M32) -march=i386
32 LDFLAGS = -s
33 OBJCOPY = objcopy
34 PPMTOLSS16 = ../ppmtolss16
35 LIB = liboldcom32.a
36 GZIP = gzip
37 PNGTOPNM = pngtopnm
39 LIBOBJS = conio.o atou.o skipatou.o printf.o c32exit.o
41 .SUFFIXES: .lss .c .o .elf .c32
43 all: syslogo.lss comecho.com hello.c32 hello2.c32 filetest.c32 c32echo.c32 \
44 fd.c32 $(LIB)
46 .PRECIOUS: %.o
47 %.o: %.S
48 $(CC) $(SFLAGS) -c -o $@ $<
50 .PRECIOUS: %.o
51 %.o: %.c
52 $(CC) $(CFLAGS) -c -o $@ $<
54 .PRECIOUS: %.elf
55 %.elf: c32entry.o %.o $(LIB)
56 $(LD) -Ttext 0x101000 -e _start -o $@ $^
58 %.c32: %.elf
59 $(OBJCOPY) -O binary $< $@
61 %.com: %.asm
62 $(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $<
64 $(LIB): $(LIBOBJS)
65 rm -f $@
66 $(AR) cq $@ $^
67 $(RANLIB) $@
69 %.lss: %.ppm.gz $(PPMTOLSS16)
70 $(GZIP) -cd $< | \
71 $(PPMTOLSS16) \#000000=0 \#d0d0d0=7 \#f6f6f6=15 \
72 > $@
74 %.ppm.gz: %.png
75 $(PNGTOPNM) $< | gzip -9 > $@
77 tidy:
78 rm -f *.o *.a *.lst *.elf
80 # Don't specify *.com since mdiskchk.com can't be built using Linux tools
81 clean: tidy
82 rm -f *.lss *.o *.c32 comecho.com
84 spotless: clean