-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile
49 lines (34 loc) · 1.11 KB
/
Makefile
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
42
43
44
45
46
47
48
49
#####################################################
# Top-level Makefile for cFAC #
#####################################################
# You should not change anything here. #
#####################################################
TOP = .
include Make.conf
subdirs : configure Make.conf
@set -e; for i in $(SUBDIRS); do (cd $$i; $(MAKE)) || exit 1; done
all : subdirs
install : subdirs
@set -e; for i in $(SUBDIRS); do (cd $$i; $(MAKE) install) || exit 1; done
check : subdirs
@set -e; for i in $(SUBDIRS); do (cd $$i; $(MAKE) check) || exit 1; done
clean :
@set -e; for i in $(SUBDIRS); do (cd $$i; $(MAKE) clean) || exit 1; done
$(RM) -r build
distclean : clean
$(RM) config.log config.status config.cache include/config.h Make.conf
$(RM) -r autom4te.cache
devclean : distclean
$(RM) configure NEWS ChangeLog
texts : ChangeLog
ChangeLog : dummy
git log --pretty=format:"- %s%n%b" > ChangeLog
Make.conf : ac-tools/Make.conf.in configure
@echo
@echo 'Please re-run ./configure'
@echo
@exit 1
configure : ac-tools/configure.ac
autoconf -o $@ $<
chmod +x $@
dummy :