]> git.ipfire.org Git - thirdparty/bash.git/blob - lib/termcap/Makefile.in
commit bash-20150605 snapshot
[thirdparty/bash.git] / lib / termcap / Makefile.in
1 ## -*- text -*- ####################################################
2 # #
3 # Makefile for termcap replacement libbrary. #
4 # #
5 ####################################################################
6
7 # Copyright (C) 1996-2009 Free Software Foundation, Inc.
8
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21
22 srcdir = @srcdir@
23 VPATH = @srcdir@
24 topdir = @top_srcdir@
25 BUILD_DIR = @BUILD_DIR@
26
27 libdir = @libdir@
28
29 INSTALL = @INSTALL@
30 INSTALL_PROGRAM = @INSTALL_PROGRAM@
31 INSTALL_DATA = @INSTALL_DATA@
32
33 CC = @CC@
34 RANLIB = @RANLIB@
35 AR = @AR@
36 ARFLAGS = @ARFLAGS@
37 RM = rm -f
38 CP = cp
39 MV = mv
40
41 SHELL = @MAKE_SHELL@
42
43 CFLAGS = @CFLAGS@
44 CPPFLAGS = @CPPFLAGS@
45 LDFLAGS = @LDFLAGS@
46
47 DEFS = @DEFS@
48
49 INCLUDES = -I. -I../.. -I$(topdir) -I$(topdir)/lib -I$(srcdir)
50
51 CCFLAGS = $(CFLAGS) $(DEFS) $(CPPFLAGS) ${INCLUDES}
52
53 # Here is a rule for making .o files from .c files that doesn't force
54 # the type of the machine (like -sun3) into the flags.
55 .c.o:
56 $(CC) -c $(CCFLAGS) $<
57
58 SOURCES = termcap.c tparam.c
59 OBJECTS = termcap.o tparam.o
60
61 DOCUMENTATION = termcap.texinfo
62
63 THINGS_TO_TAR = $(SOURCES) $(DOCUMENTATION)
64
65 ##########################################################################
66
67 all: libtermcap.a
68
69 libtermcap.a: $(OBJECTS)
70 $(RM) -f $@
71 $(AR) $(ARFLAGS) $@ $(OBJECTS)
72 -test -n "$(RANLIB)" && $(RANLIB) $@
73
74 install:
75
76 clean:
77 $(RM) *.o *.a *.log *.cp *.tp *.vr *.fn *.aux *.pg *.toc
78
79 mostlyclean: clean
80
81 distclean maintainer-clean: clean
82 $(RM) Makefile
83
84 $(DESTDIR)$(libdir)/libtermcap.a: libtermcap.a
85 ${INSTALL_DATA} -c -m 644 libtermcap.a $@
86 -test -n "$(RANLIB)" && $(RANLIB) -t $@
87
88 termcap.o: $(BUILD_DIR)/config.h
89 tparam.o: $(BUILD_DIR)/config.h
90 version.o: $(BUILD_DIR)/config.h