-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
62 lines (45 loc) · 1.36 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
# @configure_input@
### Path settings
prefix = @prefix@
top_srcdir = @top_srcdir@
exec_prefix = @exec_prefix@
bindir = @bindir@
mandir = @mandir@
libdir = @libdir@
includedir = @includedir@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
@ENCAP_DEFS@
### Installation programs and flags
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
@SET_MAKE@
### Makefile rules - no user-servicable parts below
SUBDIRS = lib nph doc
all:
for n in ${SUBDIRS}; do \
( cd $$n && ${MAKE} $@ ${MAKE_FLAGS} ) || exit 1; \
done
.PHONY: install install-recurse postinstall-encap postinstall-no-encap clean distclean
install: install-recurse @ENCAP_INSTALL_TARGET@
install-recurse:
for n in ${SUBDIRS}; do \
( cd $$n && ${MAKE} install ${MAKE_FLAGS} ) || exit 1; \
done
postinstall-encap:
${INSTALL_DATA} ${top_srcdir}/nphrc ${ENCAP_SOURCE}/${ENCAP_PKGSPEC}
${INSTALL_PROGRAM} postinstall ${ENCAP_SOURCE}/${ENCAP_PKGSPEC}
@ENCAP_INSTALL_RULES@
postinstall-no-encap:
prefix="${prefix}" ENCAP_SOURCE="${top_srcdir}" ENCAP_PKGNAME="" sh postinstall
clean:
for n in ${SUBDIRS}; do \
( cd $$n && ${MAKE} $@ ${MAKE_FLAGS} ) || exit 1; \
done
distclean:
for n in ${SUBDIRS}; do \
( cd $$n && ${MAKE} $@ ${MAKE_FLAGS} ) || exit 1; \
done
rm -f config.cache config.log config.status config.h Makefile
rm -f postinstall