FreeCalypso > hg > freecalypso-sw
comparison target-utils/loadagent/Makefile @ 386:90af6744d256
make install in target-utils: do mkdir -p before the install command
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 10 Jun 2014 18:48:21 +0000 |
parents | 3164604a6c70 |
children | e7ba9fcb3637 |
comparison
equal
deleted
inserted
replaced
385:1cb7b2b6ce18 | 386:90af6744d256 |
---|---|
26 | 26 |
27 ${PROG}.srec: ${PROG}.elf | 27 ${PROG}.srec: ${PROG}.elf |
28 ${OBJCOPY} -O srec --srec-forceS3 --srec-len=30 $< $@ | 28 ${OBJCOPY} -O srec --srec-forceS3 --srec-len=30 $< $@ |
29 | 29 |
30 install: | 30 install: |
31 mkdir -p ${INSTDIR} | |
31 install -c ${PROG}.srec ${INSTDIR} | 32 install -c ${PROG}.srec ${INSTDIR} |
32 | 33 |
33 clean: | 34 clean: |
34 rm -f *.o *errs *core *.elf *.bin *.srec crt0.S | 35 rm -f *.o *errs *core *.elf *.bin *.srec crt0.S |
35 | 36 |