changeset 739:de5e16cea79f

target-utils/lunadrv/Makefile: install added
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 11 Oct 2020 03:05:29 +0000
parents f19d12f5756f
children 5fdc241dcc44
files target-utils/lunadrv/Makefile
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/target-utils/lunadrv/Makefile	Wed Sep 16 06:49:31 2020 +0000
+++ b/target-utils/lunadrv/Makefile	Sun Oct 11 03:05:29 2020 +0000
@@ -4,6 +4,8 @@
 LD=	arm-elf-ld
 OBJCOPY=arm-elf-objcopy
 
+INSTDIR=/opt/freecalypso/target-bin
+
 PROG=	lunadrv
 OBJS=	crt0.o backlight.o cmdtab.o haoran.o lcdout.o main.o regcmd.o
 LIBS=	../libcommon/libcommon.a ../libprintf/libprintf.a ../libbase/libbase.a \
@@ -23,6 +25,10 @@
 ${PROG}.srec:	${PROG}.elf
 	${OBJCOPY} -O srec --srec-forceS3 --srec-len=30 $< $@
 
+install:
+	mkdir -p ${INSTDIR}
+	install -c -m 644 ${PROG}.srec ${INSTDIR}
+
 clean:
 	rm -f *.o *errs *core *.elf *.bin *.srec crt0.S