source: trunk/essentials/app-shells/bash/lib/readline/examples/Makefile@ 3232

Last change on this file since 3232 was 3228, checked in by bird, 19 years ago

bash 3.1

File size: 1.3 KB
Line 
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
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
Note: See TracBrowser for help on using the repository browser.