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 3 of the License, or
8#   (at your option) 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, see <http://www.gnu.org/licenses/>.
17#
18
19EXECUTABLES = fileman rltest rl
20CFLAGS  = -g -I../.. -I.. -DREADLINE_LIBRARY
21LDFLAGS = -g -L..
22
23.c.o:
24	$(CC) $(CFLAGS) -c $<
25
26all: $(EXECUTABLES)
27
28
29rl: rl.o
30	$(CC) $(LDFLAGS) -o $@ rl.o -lreadline -ltermcap
31
32fileman: fileman.o
33	$(CC) $(LDFLAGS) -o $@ fileman.o -lreadline -ltermcap
34
35rltest: rltest.o
36	$(CC) $(LDFLAGS) -o $@ rltest.o -lreadline -ltermcap
37
38rlcat: rlcat.o
39	$(CC) $(LDFLAGS) -o $@ rlcat.o -lreadline -ltermcap
40
41fileman.o: fileman.c
42rltest.o: rltest.c
43rl.o: rl.c
44rlcat.o: rlcat.c
45