Imported from ../bash-2.05b.tar.gz.
[platform/upstream/bash.git] / lib / readline / examples / Makefile
1 # This is the Makefile for the examples subdirectory of readline. -*- text -*-
2 #
3 # Copyright (C) 1994 Free Software Foundation, Inc.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
18
19 EXECUTABLES = fileman rltest rl
20 CFLAGS  = -g -I../.. -I.. -DREADLINE_LIBRARY
21 LDFLAGS = -g -L..
22
23 .c.o:
24         $(CC) $(CFLAGS) -c $<
25
26 all: $(EXECUTABLES)
27
28
29 rl: rl.o
30         $(CC) $(LDFLAGS) -o $@ rl.o -lreadline -ltermcap
31
32 fileman: fileman.o
33         $(CC) $(LDFLAGS) -o $@ fileman.o -lreadline -ltermcap
34
35 rltest: rltest.o
36         $(CC) $(LDFLAGS) -o $@ rltest.o -lreadline -ltermcap
37
38 rlcat: rlcat.o
39         $(CC) $(LDFLAGS) -o $@ rlcat.o -lreadline -ltermcap
40
41 fileman.o: fileman.c
42 rltest.o: rltest.c
43 rl.o: rl.c
44 rlcat.o: rlcat.c