forked from SWI-Prolog/packages-RDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
60 lines (44 loc) · 1.54 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
################################################################
# SWI-Prolog `RDF' package
# Author: Jan Wielemaker. [email protected]
# Copyright: LGPL (see COPYING or www.gnu.org
################################################################
PACKAGE=RDF
DOC=rdf2pl
LIBPL= rdf.pl rdf_parser.pl rdf_triple.pl rewrite.pl \
rdf_ntriples.pl rdf_write.pl
XPCEPL= rdf_diagram.pl
SRCXPCEPL= $(addprefix $(srcdir)/, $(XPCEPL))
LIBSRCPL= $(addprefix $(srcdir)/, $(LIBPL))
include ../Makefile.defs
all:
@echo "Nothing to do for this package"
install: $(LIBSRCPL) xpce-install install-examples
$(INSTALL_DATA) $(LIBSRCPL) $(DESTDIR)$(PLLIBDIR)
$(MKINDEX)
ln-install::
@$(MAKE) INSTALL_DATA=../ln-install install
xpce-install: $(SRCXPCEPL)
if [ -d $(DESTDIR)$(XPCEBASE) ]; then \
$(INSTALL_DATA) $(SRCXPCEPL) $(DESTDIR)$(XPCEBASE)/prolog/lib; \
fi
rpm-install: install
pdf-install::
-$(INSTALL_DATA) $(DOC).pdf $(DESTDIR)$(PKGDOCDIR)
html-install::
-$(INSTALL_DATA) $(DOC).html $(DESTDIR)$(PKGDOCDIR)
uninstall:
(cd $(PLBASE)/library && rm -f $(LIBPL))
$(MKINDEX)
check::
$(PL) -q -f $(srcdir)/test_rdf.pl -g test_rdf,halt -t 'halt(1)'
$(PL) -q -f $(srcdir)/test_write.pl -g test_write,halt -t 'halt(1)'
install_examples::
################################################################
# Clean
################################################################
clean:
rm -f *~ *% config.log $(TEX)
distclean: clean
rm -f $(TARGETS) config.h config.cache config.status Makefile
rm -f $(DOC).aux $(DOC).log $(DOC).out $(DOC).toc