File: Makefile.in

package info (click to toggle)
sdop 0.81-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 12,020 kB
  • sloc: ansic: 16,190; xml: 8,522; sh: 265; perl: 199; makefile: 129
file content (86 lines) | stat: -rw-r--r-- 2,842 bytes parent folder | download | duplicates (5)
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

# Makefile.in for sdop. The building work is done by a separate Makefile in
# the src directory, which gets passed settings from here.

mkinstalldirs = $(SHELL) mkinstalldirs

# These variables get set up by the configure script.

CC = @CC@
CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@

INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@

prefix  = @prefix@
BINDIR  = @prefix@/bin
DATADIR = @datadir@/sdop
MANDIR  = @mandir@

# BINDIR is the directory in which the commands are installed.
# DATADIR is the directory in which the hyphen list and font metrics are installed.
# MANDIR is the directory in which the man pages are installed.

SUPPORT_JPEG = @SUPPORT_JPEG@
SUPPORT_PNG  = @SUPPORT_PNG@

# The compile commands can be very long. To make the output look better,
# they are not normally echoed in full. To get full echoing, the caller
# must set FULLECHO='' on the command line and call make with -e. We default
# FULLECHO to '@' to suppress the full echo. Then define an abbreviation.

FULLECHO = @
FE       = $(FULLECHO)

# Do the building in the src directory

build:; @cd src; $(MAKE) all \
                BINDIR=$(BINDIR) \
                DATADIR=$(DATADIR) \
                MANDIR=$(MANDIR) \
                SUPPORT_JPEG=$(SUPPORT_JPEG) \
                SUPPORT_PNG=$(SUPPORT_PNG) \
                CC="$(CC)" \
                CFLAGS="$(CFLAGS)" \
                LDFLAGS="$(LDFLAGS)" \
                LIBS="$(LIBS)" \
                FE="$(FE)"

clean:; cd src; $(MAKE) clean

distclean:;     rm Makefile config.cache config.log config.status; \
                cd src; $(MAKE) clean

test:           build
		cd testing; ./runtest

install:        build
		$(mkinstalldirs) $(DESTDIR)$(BINDIR)
		$(mkinstalldirs) $(DESTDIR)$(DATADIR)
		$(mkinstalldirs) $(DESTDIR)$(DATADIR)/fontmetrics
		$(mkinstalldirs) $(DESTDIR)$(MANDIR)
		$(mkinstalldirs) $(DESTDIR)$(MANDIR)/man1
		$(INSTALL) src/sdop $(DESTDIR)$(BINDIR)/sdop
		$(INSTALL_DATA) share/HyphenData $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/PSheader $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/arttemplate $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/foottable* $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/foottable-p* $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/foottable-t* $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/headtable* $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/headtable-p* $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/headtable-t* $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/indexcollate $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/titletemplate $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/toctemplate $(DESTDIR)$(DATADIR)
		$(INSTALL_DATA) share/fontmetrics/* $(DESTDIR)$(DATADIR)/fontmetrics
		$(INSTALL_DATA) doc/sdop.1 $(DESTDIR)$(MANDIR)/man1

uninstall:
		rm $(BINDIR)/sdop
		rm -rf $(DATADIR)/*
		rm $(MANDIR)/man1/sdop.1

# End