Readline 5.1 import for HEAD.
[deliverable/binutils-gdb.git] / readline / examples / Makefile.in
CommitLineData
d60d9f65 1#
1b17e766
EZ
2# This is the Makefile for the readline examples subdirectory.
3#
4# Copyright (C) 1994 Free Software Foundation, Inc.
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option)
9# any later version.
10
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
9255ee31 19RL_LIBRARY_VERSION = @LIBVERSION@
1b17e766 20
c862e87b 21SHELL = @MAKE_SHELL@
d60d9f65
SS
22RM = rm -f
23
24srcdir = @srcdir@
25VPATH = .:@srcdir@
26top_srcdir = @top_srcdir@
27BUILD_DIR = .
28
9255ee31
EZ
29# Support an alternate destination root directory for package building
30DESTDIR =
31
d60d9f65
SS
32DEFS = @DEFS@
33CC = @CC@
34CFLAGS = @CFLAGS@
9255ee31 35LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DREADLINE_LIBRARY -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
d60d9f65
SS
36CPPFLAGS = @CPPFLAGS@
37
c862e87b 38INCLUDES = -I$(srcdir) -I$(top_srcdir) -I..
d60d9f65
SS
39
40CCFLAGS = $(DEFS) $(LOCAL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(CFLAGS)
9255ee31 41LDFLAGS = -g -L.. @LDFLAGS@
d60d9f65 42
5bdf8622
DJ
43PURIFY = @PURIFY@
44
1b17e766
EZ
45READLINE_LIB = ../libreadline.a
46HISTORY_LIB = ../libhistory.a
47
d60d9f65
SS
48TERMCAP_LIB = @TERMCAP_LIB@
49
50.c.o:
c862e87b 51 ${RM} $@
d60d9f65
SS
52 $(CC) $(CCFLAGS) -c $<
53
9255ee31 54EXECUTABLES = fileman rltest rl rlcat rlversion histexamp
5bdf8622 55OBJECTS = fileman.o rltest.o rl.o rlcat.o rlversion.o histexamp.o
d60d9f65
SS
56
57all: $(EXECUTABLES)
5bdf8622 58everything: all
d60d9f65 59
9255ee31 60rl: rl.o $(READLINE_LIB)
5bdf8622 61 $(PURIFY) $(CC) $(LDFLAGS) -o $@ rl.o $(READLINE_LIB) $(TERMCAP_LIB)
d60d9f65 62
9255ee31 63rlcat: rlcat.o $(READLINE_LIB)
5bdf8622 64 $(PURIFY) $(CC) $(LDFLAGS) -o $@ rlcat.o $(READLINE_LIB) $(TERMCAP_LIB)
9255ee31
EZ
65
66fileman: fileman.o $(READLINE_LIB)
5bdf8622 67 $(PURIFY) $(CC) $(LDFLAGS) -o $@ fileman.o $(READLINE_LIB) $(TERMCAP_LIB)
d60d9f65 68
9255ee31 69rltest: rltest.o $(READLINE_LIB)
5bdf8622
DJ
70 $(PURIFY) $(CC) $(LDFLAGS) -o $@ rltest.o $(READLINE_LIB) $(TERMCAP_LIB)
71
72rlptytest: rlptytest.o $(READLINE_LIB)
73 $(PURIFY) $(CC) $(LDFLAGS) -o $@ rlptytest.o $(READLINE_LIB) $(TERMCAP_LIB)
d60d9f65 74
1b17e766 75rlversion: rlversion.o $(READLINE_LIB)
5bdf8622 76 $(CC) $(LDFLAGS) -o $@ rlversion.o $(READLINE_LIB) $(TERMCAP_LIB)
c862e87b 77
9255ee31 78histexamp: histexamp.o $(HISTORY_LIB)
5bdf8622 79 $(PURIFY) $(CC) $(LDFLAGS) -o $@ histexamp.o -lhistory $(TERMCAP_LIB)
9255ee31 80
d60d9f65
SS
81clean mostlyclean:
82 $(RM) $(OBJECTS)
1b17e766 83 $(RM) $(EXECUTABLES) *.exe
d60d9f65
SS
84
85distclean maintainer-clean: clean
86 $(RM) Makefile
87
88fileman.o: fileman.c
89rltest.o: rltest.c
90rl.o: rl.c
c862e87b 91rlversion.o: rlversion.c
9255ee31 92histexamp.o: histexamp.c
5bdf8622
DJ
93rlcat.o: rlcat.c
94rlptytest.o: rlptytest.c
9255ee31
EZ
95
96fileman.o: $(top_srcdir)/readline.h
97rltest.o: $(top_srcdir)/readline.h
98rl.o: $(top_srcdir)/readline.h
99rlversion.o: $(top_srcdir)/readline.h
100histexamp.o: $(top_srcdir)/history.h
5bdf8622
DJ
101rlcat.o: $(top_srcdir)/readline.h $(top_srcdir)/history.h
102rlptytest.o: $(top_srcdir)/readline.h $(top_srcdir)/history.h
This page took 0.323319 seconds and 4 git commands to generate.