annotate ffstools/Makefile @ 992:a7b0b426f9ca

target-utils: boot ROM UART autodetection revamped The new implementation should work with both the familiar Calypso C035 boot ROM version found in our regular targets as well as the older Calypso F741979B version found on the vintage D-Sample board.
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Wed, 30 Dec 2015 21:28:41 +0000
parents 2dfd9cfa9df6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
245
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
1 SUBDIR= tiffs-rd tiffs-wrappers
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
2
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
3 all: ${SUBDIR}
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
4
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
5 ${SUBDIR}: FRC
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
6 cd $@; ${MAKE} ${MFLAGS}
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
7
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
8 clean: FRC
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
9 rm -f a.out core errs
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
10 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
11
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
12 install: FRC
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
13 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
14
2dfd9cfa9df6 ffstools/Makefile added
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
15 FRC: