source: rtems/cpukit/automake/multilib.am @ 121dd881

4.115
Last change on this file since 121dd881 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 865 bytes
Line 
1if MULTILIB
2MULTISRCTOP =
3MULTIDIRS =
4MULTIDO = true
5MULTICLEAN = true
6endif
7
8# Multilib support rules
9.PHONY: all-multi install-multi mostlyclean-multi clean-multi distclean-multi \
10        maintainer-clean-multi
11
12if MULTILIB
13all-recursive: all-multi
14install-recursive: install-multi
15
16mostlyclean-recursive: mostlyclean-multi
17clean-recursive: clean-multi
18distclean-recursive: distclean-multi
19maintainer-clean-recursive: maintainer-clean-multi
20
21all-multi:
22        $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do
23install-multi:
24        $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do
25
26mostlyclean-multi:
27        $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean
28clean-multi:
29        $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean
30distclean-multi:
31        $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean
32maintainer-clean-multi:
33        $(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean
34endif
Note: See TracBrowser for help on using the repository browser.