File: Makefile.am

package info (click to toggle)
xgsmlib 0.2-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,500 kB
  • ctags: 915
  • sloc: sh: 5,985; cpp: 5,929; ansic: 348; makefile: 106; sed: 16
file content (41 lines) | stat: -rw-r--r-- 980 bytes parent folder | download | duplicates (2)
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
32
33
34
35
36
37
38
39
40
41
## Process this file with automake to produce Makefile.in
# *************************************************************************
# * Xgsm - mobile phone manager
# *
# * File:    Makefile.am
# *
# * Purpose: Main Makefile
# *
# * Author:  Peter Hofmann (software@pxh.de)
# *
# * Created: 8.3.2000
# *************************************************************************


SUBDIRS = m4 po src scripts

EXTRA_DIST = config.rpath  xgsmlib.spec

install-data-local:
	@$(NORMAL_INSTALL)
	if test -d $(srcdir)/pixmaps; then \
	  $(mkinstalldirs) $(DESTDIR)@PACKAGE_PIXMAPS_DIR@; \
	  for pixmap in $(srcdir)/pixmaps/*; do \
	    if test -f $$pixmap; then \
	      $(INSTALL_DATA) $$pixmap $(DESTDIR)@PACKAGE_PIXMAPS_DIR@; \
	    fi \
	  done \
	fi

dist-hook:
	if test -d pixmaps; then \
	  mkdir $(distdir)/pixmaps; \
	  for pixmap in pixmaps/*; do \
	    if test -f $$pixmap; then \
	      cp -p $$pixmap $(distdir)/pixmaps; \
	    fi \
	  done \
	fi


ACLOCAL_AMFLAGS = -I m4