annotate target-utils/Makefile @ 75:c9768f5fb329

target-utils: pirexplore added to top level Makefile
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 28 Jul 2013 01:30:22 +0000
parents 5b3d7398d2d9
children 02ece4d8c755
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
75
c9768f5fb329 target-utils: pirexplore added to top level Makefile
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 38
diff changeset
1 PROGS= helloapp loadagent pirexplore
38
5b3d7398d2d9 target-utils top level Makefile buglet
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 25
diff changeset
2 LIBS= libcommon libload libprintf
25
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
3 SUBDIR= ${PROGS} ${LIBS}
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
4
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
5 default: loadagent
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
6 all: ${PROGS}
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
7
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
8 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
9 loadagent: libcommon libload libprintf
75
c9768f5fb329 target-utils: pirexplore added to top level Makefile
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 38
diff changeset
10 pirexplore: libcommon libprintf
25
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
11
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
12 ${SUBDIR}: FRC
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
13 cd $@; make ${MFLAGS}
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
14
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
15 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
16 rm -f a.out core errs
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
17 for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
18
796da8d60b23 target-utils: top-level Makefile created like in the Book-E-MON and
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
19 FRC: