view Makefile @ 30:2d60f9a3032b default tip

LICENSE: public domain, copied from freecalypso-tools
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 24 Jun 2023 04:24:38 +0000
parents 09c18549921b
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
SUBDIR=	bootmatch bootutil

INSTALL_PREFIX=	/opt/freecalypso

all:	${SUBDIR}

bootutil:	bootmatch

${SUBDIR}: FRC
	cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}"

clean: FRC
	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done

install: FRC
	mkdir -p ${INSTALL_PREFIX}/bin
	install -c -m 755 sh/* ${INSTALL_PREFIX}/bin
	mkdir -p ${INSTALL_PREFIX}/scripts
	install -c -m 644 cmd/* ${INSTALL_PREFIX}/scripts
	mkdir -p ${INSTALL_PREFIX}/target-bin
	install -c -m 644 target-bin/* ${INSTALL_PREFIX}/target-bin
	cd bootutil; ${MAKE} ${MFLAGS} INSTALL_PREFIX=${INSTALL_PREFIX} install

FRC: