forked from SWI-Prolog/packages-zlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.in
97 lines (73 loc) · 2.44 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
################################################################
# Makefile template for SWI-Prolog CLIB package
#
# This template is used by configure to create Makefile. See
# the file INSTALL for further installation instructions.
#
# License: LGPL
#
# Author: Jan Wielemaker ([email protected])
################################################################
PACKAGE=zlib
DOC=zlib
LIBPL= @ZLIB_PLTARGETS@
TARGETS= @ZLIB_TARGETS@
CPPFLAGS= @ZLIB_CPPFLAGS@
PKGLDFLAGS= @ZLIB_LDFLAGS@
ZOBJ= zlib4pl.o
# start standard Makefile
include ../Makefile.defs
all: $(TARGETS)
nolib::
@echo "WARNING: Could not find zlib library; skipped"
zlib4pl.@SO@: $(ZOBJ)
$(LD) $(LDSOFLAGS) -o $@ $(ZOBJ) @ZLIB_LIBS@ $(LIBPLSO)
install: $(TARGETS) $(addprefix $(srcdir)/, $(LIBPL))
mkdir -p $(DESTDIR)$(SOLIBDIR)
for f in $(TARGETS); do \
[ "$$f" = nolib ] || $(INSTALL_PROGRAM) $$f $(DESTDIR)$(SOLIBDIR); \
done
mkdir -p $(DESTDIR)$(PLLIBDIR)
for f in $(LIBPL); do \
$(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(PLLIBDIR); \
done
$(MKINDEX)
ln-install::
$(MAKE) INSTALL_DATA="../ln-install" INSTALL_PROGRAM="../ln-install" install
rpm-install: install
html-install::
mkdir -p $(DESTDIR)$(PKGDOC)
$(INSTALL) -m 644 $(DOC).html $(DESTDIR)$(PKGDOC)
pdf-install::
mkdir -p $(DESTDIR)$(PKGDOC)
$(INSTALL) -m 644 $(DOC).pdf $(DESTDIR)$(PKGDOC)
uninstall::
(cd $(SOLIBDIR) && rm -f $(TARGETS))
(cd $(PLBASE)/library && rm -f $(LIBPL))
$(MKINDEX)
################################################################
# Documentation
################################################################
TEXEXTRA= zlib4pl.tex
$(TEX): $(TEXEXTRA)
zlib4pl.tex: $(srcdir)/zlib.pl
$(PLTOTEX) --out=$@ --section 'library(zlib)'
################################################################
# Testing
################################################################
check: $(srcdir)/test_multipart.gz
(cd $(srcdir) && $(PL) -q -f test_zlib.pl -g test_zlib,halt -t 'halt(1)' )
test_multipart.gz:
echo "Part1" | gzip > $(srcdir)/$@
echo "Part2" | gzip >> $(srcdir)/$@
################################################################
# Clean
################################################################
clean:
rm -f $(ZOBJ) *~ *.o *% a.out core config.log
distclean: clean
rm -f $(TARGETS) config.cache config.h config.status Makefile
rm -f $(DOC).aux $(DOC).log $(DOC).out $(DOC).toc
rm -f test_multipart.gz
rm -rf html
rm -rf autom4te.cache