Initial import from FreeBSD RELENG_4:
[games.git] / contrib / libreadline / examples / Makefile.in
1 #
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.
19
20 SHELL = @MAKE_SHELL@
21 RM = rm -f
22
23 srcdir = @srcdir@
24 VPATH = .:@srcdir@
25 top_srcdir = @top_srcdir@
26 BUILD_DIR = .
27
28 DEFS = @DEFS@
29 CC = @CC@
30 CFLAGS = @CFLAGS@
31 LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DREADLINE_LIBRARY
32 CPPFLAGS = @CPPFLAGS@
33
34 INCLUDES = -I$(srcdir) -I$(top_srcdir) -I..
35
36 CCFLAGS  = $(DEFS) $(LOCAL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(CFLAGS)
37 LDFLAGS = -g -L..
38
39 READLINE_LIB = ../libreadline.a
40 HISTORY_LIB = ../libhistory.a
41
42 TERMCAP_LIB = @TERMCAP_LIB@
43
44 .c.o:
45         ${RM} $@
46         $(CC) $(CCFLAGS) -c $<
47
48 EXECUTABLES = fileman rltest rl rlversion
49 OBJECTS = fileman.o rltest.o rl.o rlversion.o
50
51 all: $(EXECUTABLES)
52
53 rl: rl.o
54         $(CC) $(LDFLAGS) -o $@ rl.o -lreadline $(TERMCAP_LIB)
55
56 fileman: fileman.o
57         $(CC) $(LDFLAGS) -o $@ fileman.o -lreadline $(TERMCAP_LIB)
58
59 rltest: rltest.o
60         $(CC) $(LDFLAGS) -o $@ rltest.o -lreadline $(TERMCAP_LIB)
61
62 rlversion: rlversion.o $(READLINE_LIB)
63         $(CC) $(LDFLAGS) -o $@ rlversion.o -lreadline $(TERMCAP_LIB)
64
65 clean mostlyclean:
66         $(RM) $(OBJECTS)
67         $(RM) $(EXECUTABLES) *.exe
68
69 distclean maintainer-clean: clean
70         $(RM) Makefile
71
72 fileman.o: fileman.c
73 rltest.o: rltest.c
74 rl.o: rl.c
75 rlversion.o: rlversion.c
76
77 # Stuff for Per Bothner's `rlfe' program
78  
79 rlfe: rlfe.o $(READLINE_LIB) $(HISTORY_LIB)
80         $(CC) $(LDFLAGS) -o $@ rlfe.o -lreadline -lhistory ${TERMCAP_LIB}
81
82 rlfe.o: rlfe.c
83
84 rlfe.o: $(top_srcdir)/readline.h
85 rlfe.o: $(top_srcdir)/history.h