forked from matrix-construct/construct
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile.am
40 lines (37 loc) · 768 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I tools/m4
SUBDIRS =#
SUBDIRS += include/ircd
SUBDIRS += ircd
SUBDIRS += matrix
SUBDIRS += modules
SUBDIRS += share
SUBDIRS += construct
.PHONY: subdirs $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
mrproper-local:
rm -f aclocal.m4
rm -rf autom4te.cache
rm -f compile
rm -f config.*
rm -f configure
rm -f depcomp
rm -f ltmain.sh
rm -f install-sh
rm -f libtool
rm -f missing
rm -f */Makefile
rm -f */Makefile.in
rm -f include/*/Makefile
rm -f include/*/Makefile.in
rm -rf */.deps
rm -f Makefile
rm -f Makefile.in
rm -f tools/m4/argz.m4
rm -f tools/m4/libtool.m4
rm -f tools/m4/ltargz.m4
rm -f tools/m4/ltoptions.m4
rm -f tools/m4/ltsugar.m4
rm -f tools/m4/ltversion.m4
rm -f tools/m4/lt~obsolete.m4