1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/devel/u-boot/files/BSDmakefile
Lars Engels 5386416254 mkimage adds a header to a kernel image with information and checksums for
the u-boot bootloader used in embedded systems.

WWW: http://www.denx.de/wiki/UBoot

PR:		ports/116442
Submitted by:	Markus Nünnerich <mn (at) bsdgroup.de>
Approved by:	miwi (mentor)
2007-09-19 17:21:13 +00:00

12 lines
211 B
Makefile

CFLAGS+= -I../include -DUSE_HOSTCC
all: mkimage
mkimage: mkimage.o crc32.o
$(CC) $(CFLAGS) -o $(.TARGET) $(.ALLSRC)
crc32.o: ../lib_generic/crc32.c ../include/zlib.h
clean:
rm -f mkimage mkimage.o crc32.o