mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
5386416254
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)
12 lines
211 B
Makefile
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
|