-
Notifications
You must be signed in to change notification settings - Fork 19
/
Makefile
76 lines (62 loc) · 2.49 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
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
75
76
#-----------------------------------------------------------------------
# Copyright (c) 2011-2024 Remko Scharroo
# See LICENSE.TXT file for copying and redistribution conditions.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#-----------------------------------------------------------------------
#
# This Makefile provides the following targets:
# all : Compile code
# install : Install programs and documentation
# clean : Remove compiled code
# spotless : Remove compiled code and configuration files
# gitclean : Remove all files not in git repository
# test : Test the code
# update : Pull update from git repository
# refresh : Pull update and install if needed
#
#-----------------------------------------------------------------------
include config.mk
CONFIG_IN = config.mk.in src/rads-config.in doc/manuals/rads_config.tex.in
CONFIG = $(CONFIG_IN:.in=)
SUBDIRS = src conf $(DEVEL_DIRS)
.PHONY: $(SUBDIRS)
#-----------------------------------------------------------------------
# Rules for making, installing, and cleaning
#-----------------------------------------------------------------------
all install clean spotless test:: $(CONFIG) $(SUBDIRS)
$(SUBDIRS):
$(MAKE) $(MFLAGS) -C $@ $(MAKECMDGOALS)
install::
$(INSTALL_DIR) $(docdir)
$(INSTALL_DATA) doc/manuals/*.pdf $(docdir)
clean spotless::
$(RM) $(CONFIG)
gitclean:
git clean -fdx
#-----------------------------------------------------------------------
# To make configuration files
#-----------------------------------------------------------------------
config: $(CONFIG)
$(CONFIG): configure $(CONFIG_IN)
@if test -f config.log ; then \
cmd=`grep '^ \\$$' config.log | grep configure | cut -c5-` ; \
echo "Running ... $$cmd" ; $$cmd ; \
else \
echo "Run configure first" ; \
fi
#-----------------------------------------------------------------------
# To update from GitHub
#-----------------------------------------------------------------------
update:
git pull
refresh:
git pull | grep -q "Already up-to-date." ; if test $$? -eq 1 ; then $(MAKE) install ; fi