annotate target-utils/Makefile @ 328:5d9001f0c3aa

fc-sendsp: written, compiles
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 20 Apr 2014 23:14:35 +0000
parents 1b4beffc8055
children b39802cd9329
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
315
1b4beffc8055 target-utils: compalstage included in the build
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 224
diff changeset
1 FOR_LOADTOOLS= compalstage loadagent
1b4beffc8055 target-utils: compalstage included in the build
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 224
diff changeset
2 ALLPROGS= ${FOR_LOADTOOLS} helloapp pirexplore
1b4beffc8055 target-utils: compalstage included in the build
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 224
diff changeset
3 LIBS= libcommon libload libprintf libtiffs
1b4beffc8055 target-utils: compalstage included in the build
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 224
diff changeset
4 SUBDIR= ${ALLPROGS} ${LIBS}
25
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
5
315
1b4beffc8055 target-utils: compalstage included in the build
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 224
diff changeset
6 default: ${FOR_LOADTOOLS}
1b4beffc8055 target-utils: compalstage included in the build
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 224
diff changeset
7 all: ${ALLPROGS}
25
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
8
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
9 helloapp: libcommon libprintf
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
10 loadagent: libcommon libload libprintf
224
2900fe603f8a beginning of MPFFS->TIFFS naming convention change
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 196
diff changeset
11 pirexplore: libcommon libload libprintf libtiffs
25
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
12
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
13 ${SUBDIR}: FRC
108
3b9cc76f2073 target-utils/Makefile: make clean: support for subset packaging
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 100
diff changeset
14 cd $@; ${MAKE} ${MFLAGS}
25
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
15
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
16 clean: FRC
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
17 rm -f a.out core errs
108
3b9cc76f2073 target-utils/Makefile: make clean: support for subset packaging
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 100
diff changeset
18 for i in ${SUBDIR}; do \
3b9cc76f2073 target-utils/Makefile: make clean: support for subset packaging
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 100
diff changeset
19 if [ -d $$i ]; then \
3b9cc76f2073 target-utils/Makefile: make clean: support for subset packaging
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 100
diff changeset
20 (cd $$i; ${MAKE} ${MFLAGS} clean) \
3b9cc76f2073 target-utils/Makefile: make clean: support for subset packaging
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 100
diff changeset
21 fi \
3b9cc76f2073 target-utils/Makefile: make clean: support for subset packaging
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 100
diff changeset
22 done
25
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
23
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
24 FRC: