annotate gsm-fw/gpf/Makefile @ 369:e2a05eb3129f

OSL: the bogus event group code appears to be unused aside from the os_EvGrpInit() call in os_Initialize(), so let's table it aside for now, and thus spare the boatload of compiler warnings.
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Thu, 29 May 2014 06:41:52 +0000
parents 42bc1d7068ac
children 13428351b82c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
338
42bc1d7068ac OSL reconstruction: os_pro_fl.c started
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 325
diff changeset
1 SUBDIR= frame misc osl tst_drv tst_pei
318
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
2
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
3 all: ${SUBDIR}
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
4
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
5 ${SUBDIR}: FRC
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
6 cd $@; ${MAKE} ${MFLAGS}
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
7
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
8 clean: FRC
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
9 rm -f *.[oa] *.out *errs
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
10 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
11
0c87c1f9dac5 GPF: beginning of Makefile hierarchy
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
12 FRC: