File: Makefile.am

package info (click to toggle)
libpeas 1.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 5,328 kB
  • sloc: sh: 11,723; ansic: 11,717; makefile: 938; python: 54; xml: 27
file content (18 lines) | stat: -rw-r--r-- 220 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SUBDIRS =

if ENABLE_GJS
SUBDIRS += gjs
endif

if ENABLE_PYTHON
SUBDIRS += python
endif

if ENABLE_SEED
SUBDIRS += seed
endif

gcov:
	@for dir in $(SUBDIRS); do \
	   (cd $$dir && $(MAKE) $(AM_MAKEFLAGS) $(@)); \
	 done