[go: up one dir, main page]

File: Makefile.am

package info (click to toggle)
libgail-gnome 1.20.3-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,492 kB
  • ctags: 440
  • sloc: sh: 10,144; ansic: 1,198; makefile: 159
file content (31 lines) | stat: -rw-r--r-- 782 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
26
27
28
29
30
31
SUBDIRS = gail-gnome test

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA= libgail-gnome.pc

schemasdir       = $(GCONF_SCHEMA_FILE_DIR)
schemas_DATA = libgail-gnome.schemas

if GCONF_SCHEMAS_INSTALL
install-data-local:
	if test -z "$(DESTDIR)" ; then \
                        for p in $(schemas_DATA) ; do \
                                GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(top_srcdir)/$$p ; \
                        done \
                fi
else
install-data-local:
endif


EXTRA_DIST= $(schemas_DATA) libgail-gnome.pc.in

.PHONY: files

files:
	@for subdir in $(SUBDIRS); do\
	  files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
	  for file in $$files; do \
	    echo $$subdir/$$file; \
	  done; \
	done