-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathMakefile.am
58 lines (46 loc) · 1.45 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- makefile-automake -*-
#
# Configuration bootstrap, top level makefile
#
# $Id$
#
# Blame: Jordan Hrycaj <jordan@teddy-net.com>
# recommended by libtoolize
ACLOCAL_AMFLAGS = -I m4lib
SUBDIRS = boot Sources
CLEANFILES =
BUILT_SOURCES = boot/Makefile
# ---------------------------------------------------------------------------
# Auto-for-build configuration
# ---------------------------------------------------------------------------
help:
@echo
@echo "$(MAKE) [target]"
@echo
@echo "target: all [dist]clean -- standard targets"
@echo " | test -- run legacy tests"
@echo
# Build environment (unused yet)
.PHONY: prepare
prepare: $(BUILT_SOURCES)
boot/Makefile:
$(MAKE) -C boot -f Build Makefile
# ---------------------------------------------------------------------------
# Legacy tests
# ---------------------------------------------------------------------------
test:
$(MAKE) -C Sources test
# ---------------------------------------------------------------------------
# Auto configuration helper
# ---------------------------------------------------------------------------
.PHONY: libtool
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status --recheck
.PHONY: autoreconf reconf
autoreconf reconf: libtool
rm -f $(AUTOGENERATED)
touch configure.ac
autoreconf
# ---------------------------------------------------------------------------
# End
# ---------------------------------------------------------------------------