blob: 3b85b5d6bbf621739ff953e9be6465e774009057 (
plain)
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
|
#
# Makefile.am
#
# Author: Iago Toral Quiroga <itoral@igalia.com>
#
# Copyright (C) 2010 Igalia S.L. All rights reserved.
SUBDIRS = src test
MAINTAINERCLEANFILES = \
aclocal.m4 \
compile \
config.guess \
config.sub \
configure \
depcomp \
install-sh \
ltmain.sh \
missing \
libtool \
stamp-h1 \
*.in \
*.make \
mkinstalldirs \
*~
DISTCLEANFILES = $(MAINTAINERCLEANFILES)
|