-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.in
50 lines (45 loc) · 1.83 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
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
MKDIR = mkdir -p
tfkiss_main_dir = @tfkiss_main_dir@
tfkiss_work_dir = @tfkiss_work_dir@
tfkiss_conf_dir = @tfkiss_conf_dir@
tfkiss_doc_dir = @tfkiss_doc_dir@
tfkiss_log_dir = @tfkiss_log_dir@
tfkiss_run_dir = @tfkiss_run_dir@
all:
$(MAKE) -C src all
$(MAKE) -C examples all
$(MAKE) -C doc all
install:
$(MAKE) -C src install
$(MAKE) -C doc install
@if [ -f ${tfkiss_conf_dir}/tfkiss.ini ]; then \
echo "***********************************************************"; \
echo "* *"; \
echo "* W A R N I N G *"; \
echo "* ============= *"; \
echo "* *"; \
echo "* A previously installed version of TFKISS was dected *"; \
echo "* on this system. The installation of the configuration *"; \
echo "* files was suspended in order to preserve the *"; \
echo "* old configuration. *"; \
echo "* *"; \
echo "* Please refer to the documentation and CHANGE logfile *"; \
echo "* and manually adjust the configuration files where *"; \
echo "* necessary. *"; \
echo "* *"; \
echo "***********************************************************"; \
else \
$(MAKE) -C examples install; \
fi
clean:
$(MAKE) -C src clean
$(MAKE) -C examples clean
$(MAKE) -C doc clean
real_clean: clean
$(MAKE) -C src real_clean
$(MAKE) -C examples real_clean
$(MAKE) -C doc real_clean
rm -f Makefile config.cache config.status config.log