]> git.ipfire.org Git - thirdparty/bash.git/blame - lib/readline/examples/Makefile
commit bash-20080821 snapshot
[thirdparty/bash.git] / lib / readline / examples / Makefile
CommitLineData
726f6388
JA
1# This is the Makefile for the examples subdirectory of readline. -*- text -*-
2#
bb70624e
JA
3# Copyright (C) 1994 Free Software Foundation, Inc.
4
dd4f3dd8
CR
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#
bb70624e 18
d166f048 19EXECUTABLES = fileman rltest rl
bb70624e 20CFLAGS = -g -I../.. -I.. -DREADLINE_LIBRARY
726f6388
JA
21LDFLAGS = -g -L..
22
ccc6cda3
JA
23.c.o:
24 $(CC) $(CFLAGS) -c $<
25
26all: $(EXECUTABLES)
27
d166f048
JA
28
29rl: rl.o
30 $(CC) $(LDFLAGS) -o $@ rl.o -lreadline -ltermcap
31
726f6388 32fileman: fileman.o
ccc6cda3
JA
33 $(CC) $(LDFLAGS) -o $@ fileman.o -lreadline -ltermcap
34
35rltest: rltest.o
36 $(CC) $(LDFLAGS) -o $@ rltest.o -lreadline -ltermcap
726f6388 37
7117c2d2
JA
38rlcat: rlcat.o
39 $(CC) $(LDFLAGS) -o $@ rlcat.o -lreadline -ltermcap
40
726f6388 41fileman.o: fileman.c
ccc6cda3 42rltest.o: rltest.c
d166f048 43rl.o: rl.c
7117c2d2 44rlcat.o: rlcat.c