]> granicus.if.org Git - fribidi/blob - Makefile.am
Renamed subdir tablegen to gentable.
[fribidi] / Makefile.am
1 ##############################################################################
2 ## $Id: Makefile.am,v 1.2 2004-04-25 19:13:04 behdad Exp $
3 ## $Author: behdad $
4 ## $Date: 2004-04-25 19:13:04 $
5 ## $Revision: 1.2 $
6 ## $Source: /home/behdad/src/fdo/fribidi/togit/git/../fribidi/fribidi2/Makefile.am,v $
7 ##############################################################################
8 ##                                               -*- Automake -*-
9 ## Process this file with automake to produce Makefile.in
10
11 ## The order of subdirs is important, don't change without a reason.
12 SUBDIRS = charset gentable lib bin doc test
13
14 pkgconfigdir = $(libdir)/pkgconfig
15 pkgconfig_DATA = @PACKAGE@.pc
16
17 MAINTAINERCLEANFILES = \
18                 $(srcdir)/INSTALL \
19                 $(srcdir)/aclocal.m4 \
20                 $(srcdir)/autoscan.log \
21                 $(srcdir)/compile \
22                 $(srcdir)/config.guess \
23                 $(srcdir)/config.h.in \
24                 $(srcdir)/config.sub \
25                 $(srcdir)/configure \
26                 $(srcdir)/configure.scan \
27                 $(srcdir)/depcomp \
28                 $(srcdir)/install-sh \
29                 $(srcdir)/ltmain.sh \
30                 $(srcdir)/missing \
31                 `find "$(srcdir)" -type f -name Makefile.in -print` \
32                 `find "$(srcdir)" -type f -name "*~" -print`
33
34 # Indent all C source and header files
35
36 .PHONY: indent
37
38 indent: $(srcdir)/.indent.pro
39         cd "$(srcdir)" && \
40         find . -type f -mindepth 2 -name "*.[ch]" -print | \
41                 xargs ./missing --run indent
42
43
44 # Creating ChangeLog from CVS log, with cvs2cl:
45
46 MAINTAINERCLEANFILES += ChangeLog ChangeLog.bak
47
48 EXTRA_DIST = ChangeLog
49
50 ChangeLog:
51         if test -d "$(srcdir)/CVS"; then \
52                 cd "$(srcdir)" && \
53                 ./missing --run cvs2cl --stdout --utc --FSF -U AUTHORS; \
54         fi > $@