summaryrefslogtreecommitdiff
path: root/sample/Makefile
blob: 58d6d05265f55d591b5bd552c3653aa9764bcbb3 (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
#ident "$Id$"
## -----------------------------------------------------------------------
##   
##   Copyright 2001 H. Peter Anvin - All Rights Reserved
##
##   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., 675 Mass Ave, Cambridge MA 02139,
##   USA; either version 2 of the License, or (at your option) any later
##   version; incorporated herein by reference.
##
## -----------------------------------------------------------------------

##
## samples for syslinux users
##

CC         = gcc
LD         = ld
CFLAGS     = -march=i386 -O2 -fomit-frame-pointer -I../com32/include
LDFLAGS    = -s
OBJCOPY    = objcopy
PPMTOLSS16 = 	../ppmtolss16

.SUFFIXES: .lss .c .o .elf .c32

all: syslogo.lss hello.c32

.c.o:
	$(CC) $(CFLAGS) -c -o $@ $<

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

syslogo.lss:	syslogo.png $(PPMTOLSS16)
	pngtopnm syslogo.png | \
		$(PPMTOLSS16) \#000000=0 \#d0d0d0=7 \#f6f6f6=15	\
		> syslogo.lss

hello.elf: hello.o
	$(LD) -Ttext 0x101000 -e _start -o $@ $<

clean:
	rm -f *.lss *.o *.elf *.c32

spotless: clean