File: Makefile.am

package info (click to toggle)
libopenhbci 0.9.17-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,056 kB
  • ctags: 4,105
  • sloc: cpp: 26,353; sh: 10,400; ansic: 987; makefile: 423
file content (25 lines) | stat: -rw-r--r-- 631 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
EXTRA_DIST=README

all-local::
	plugins=`ls` ; \
        for pd in $$plugins; do \
          if test -d $$pd -a "$$pd" != "CVS" ; then \
           ( cd $$pd && ${MAKE} all ) || exit 1 ; \
          fi \
        done

clean-local::
	plugins=`ls` ; \
        for pd in $$plugins; do \
          if test -d $$pd -a "$$pd" != "CVS" ; then \
           ( cd $$pd && ${MAKE} clean ) || exit 1 ; \
          fi \
        done

distclean-local::
	plugins=`ls` ; \
        for pd in $$plugins; do \
          if test -d $$pd -a "$$pd" != "CVS" ; then \
           ( cd $$pd && ${MAKE} distclean ) || exit 1 ; \
          fi \
        done