-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
25 lines (20 loc) · 887 Bytes
/
Makefile.am
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
# Copyright (C) 2013-2016 David 'Mokon' Bond, All Rights Reserved
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = object test doc
dist_doc_DATA = README
TESTS = test/*.test
XFAIL_TESTS =
AM_COLOR_TESTS=always
clean-purge: clean distclean
/bin/rm -rf \
aclocal.m4 autom4te.cache config.h config.h.in config.h.in~ \
config.log config.status configure install-sh Makefile \
Makefile.in missing stamp-h1 src/Makefile.in src/Makefile depcomp \
.deps src/.deps client COPYING INSTALL test/Makefile.in test/Makefile \
test/.deps doc/Makefile.in doc/Makefile confdefs.h libtool gmon.out \
config.guess ltmain.sh config.sub object/.deps object/Makefile.in \
object/Makefile test-driver m4/* compile outfile*.csv ar-lib m4 \
src/.dirstat
find . -not -path "*.git*" -and -not -path "*mcommon*" -and \
\( -name .deps -or -name .dirstamp \) -exec /bin/rm -rf {} \;
.PHONY: clean-purge