ootp/spyrus-par2/Makefile

25 lines
536 B
Makefile
Raw Normal View History

2017-01-03 11:16:53 +00:00
# $Id: Makefile 101 2009-12-28 03:04:32Z maf $
2017-01-03 11:10:10 +00:00
INSTALLI=install -c -m0644
INSTALL=install -c -m0755
2017-01-03 11:16:53 +00:00
IMGS = spyrus1.4.hex oar.ee oar.str
2017-01-03 11:10:10 +00:00
BINS = str2ee
DOCS = eeprom-map.txt oar.str
FWDIR=/usr/local/ootp/firmware
BINDIR=/usr/local/ootp/bin
DOCDIR=/usr/local/ootp/doc
install:
mkdir -p ${FWDIR}
mkdir -p ${BINDIR}
mkdir -p ${DOCDIR}
${INSTALLI} ${IMGS} ${FWDIR}
${INSTALL} ${BINS} ${BINDIR}
${INSTALLI} ${DOCS} ${DOCDIR}
@echo files installed in ${FWDIR}
@echo files installed in ${BINDIR}
@echo files installed in ${DOCDIR}