59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
## -----------------------------------------------------------------------
|
|
##
|
|
## Copyright 2010-2011 Gene Cumm
|
|
##
|
|
## Portions from core/Makefile:
|
|
## Copyright 1998-2009 H. Peter Anvin - All Rights Reserved
|
|
## Copyright 2009-2010 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.
|
|
##
|
|
## -----------------------------------------------------------------------
|
|
|
|
#
|
|
# Makefile for the SYSLINUX geometry display for diagnostics
|
|
#
|
|
|
|
include $(MAKEDIR)/embedded.mk
|
|
coredir = $(topdir)/core
|
|
VPATH = $(SRC)
|
|
|
|
BTARGET = geodsp1s.bin geodspms.bin \
|
|
geodsp1s.img.xz geodspms.img.xz
|
|
|
|
NASMOPT = -i $(coredir)/ -i $(SRC)/ -Ox -f bin -dBINFMT
|
|
NASMOPT += -w+orphan-labels
|
|
CFLAGS = -g -O
|
|
|
|
all: $(BTARGET)
|
|
|
|
# Higher compression levels result in larger files
|
|
%.img.xz: %.bin mk-lba-img.pl
|
|
$(PERL) $(SRC)/mk-lba-img.pl $< | $(XZ) -0 > $@ || ( rm -f $@ ; false )
|
|
|
|
%.img.gz: %.bin mk-lba-img.pl
|
|
$(PERL) $(SRC)/mk-lba-img.pl $< | $(GZIPPROG) -9 > $@ || ( rm -f $@ ; false )
|
|
|
|
# in case someone really wants these without needing a decompressor
|
|
%.img: %.bin mk-lba-img.pl
|
|
$(PERL) $(SRC)/mk-lba-img.pl $< > $@ || ( rm -f $@ ; false )
|
|
|
|
%.bin: %.asm $(coredir)/writehex.inc $(coredir)/macros.inc $(coredir)/diskboot.inc
|
|
$(NASM) $(NASMOPT) -o $@ -l $(@:.bin=.lst) $<
|
|
|
|
mk-lba-img: mk-lba-img.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|
|
|
|
tidy dist:
|
|
rm -Rf *.lst *.img
|
|
rm -f mk-lba-img
|
|
|
|
clean: tidy
|
|
|
|
spotless: clean
|
|
rm -f $(BTARGET)
|