forked from blair/orca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
74 lines (54 loc) · 1.88 KB
/
Makefile.in
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@SET_MAKE@
prefix = @prefix@
MKDIR = @MKDIR@
CC = @CC@
CFLAGS = @CFLAGS@
SUBDIRS = packages \
lib \
orca \
data_gatherers \
docs \
contrib
ORCA_MAKE_DEFINES = CC='$(CC)' CFLAGS='$(CFLAGS)'
all install check: configure config/PerlHead1 config/PerlHead2 Makefile
@for subdir in $(SUBDIRS); do \
echo making $@ in $$subdir; \
(cd $$subdir && $(MAKE) $(ORCA_MAKE_DEFINES) $@) || exit 1; \
done
test: check
upgrade:
cd src && $(MAKE) upgrade_installation
install_contrib:
cd contrib && $(MAKE) install_contrib
orcallator_run_at_boot:
cd data_gatherers/orcallator && $(MAKE) orcallator_run_at_boot
orca_services_run_at_boot_using_chkconfig:
cd data_gatherers/orca_services && $(MAKE) orca_services_run_at_boot_using_chkconfig
procallator_run_at_boot_using_chkconfig:
cd data_gatherers/procallator && $(MAKE) procallator_run_at_boot_using_chkconfig
clean: clean-recursive clean-local
distclean: distclean-recursive distclean-local
clean-local:
distclean-local: clean-local
$(RM) -r autom4te*.cache
$(RM) config/aclocal.m4 config/PerlHead1 config/PerlHead2
$(RM) configure config.cache config.log config.status Makefile
clean-recursive distclean-recursive:
@for subdir in $(SUBDIRS); do \
target=`echo $@ | sed 's/-recursive//'`; \
echo making $$target in $$subdir; \
(cd $$subdir && $(MAKE) $$target) || exit 1; \
done
to-autoconf:
aclocal -I config --output=config/aclocal.m4
autoconf --include=config
$(RM) -r autom4te.cache
configure: configure.in
$(MAKE) to-autoconf
./config.status
Makefile: Makefile.in
CONFIG_FILES=Makefile ./config.status
config/PerlHead1: config/PerlHead1.in
CONFIG_FILES=config/PerlHead1 ./config.status
config/PerlHead2: config/PerlHead2.in
CONFIG_FILES=config/PerlHead2 ./config.status