mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 13:22:48 +00:00
17 lines
350 B
Makefile
17 lines
350 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= uathload
|
|
MAN= uathload.8
|
|
|
|
SRCS= uathload.c ar5523.bin
|
|
|
|
CLEANFILES= ar5523.bin
|
|
|
|
ar5523.bin: ${.CURDIR}/../../sys/contrib/dev/uath/ar5523.bin.uu
|
|
uudecode -p ${.CURDIR}/../../sys/contrib/dev/uath/ar5523.bin.uu > ${.TARGET}
|
|
|
|
ar5523.o: ar5523.bin
|
|
${LD} -b binary -d -warn-common -r -d -o ${.TARGET} ar5523.bin
|
|
|
|
.include <bsd.prog.mk>
|