aboutsummaryrefslogtreecommitdiffstats
path: root/lib/readline/examples/Makefile
diff options
context:
space:
mode:
authorcvpcs <root@cvpcs.org>2010-06-03 08:50:38 -0500
committerDan Pasanen <dan.pasanen@gmail.com>2014-10-02 14:25:31 -0500
commit375cdd27e8ac4b599406404cb73964e789ddf0d3 (patch)
treebe76d45130bf85ab608d381487cc35f55da77bb4 /lib/readline/examples/Makefile
parent0ff61cc956d495fc1a9acf8588f54435585a597c (diff)
downloadandroid_external_bash-375cdd27e8ac4b599406404cb73964e789ddf0d3.tar.gz
android_external_bash-375cdd27e8ac4b599406404cb73964e789ddf0d3.tar.bz2
android_external_bash-375cdd27e8ac4b599406404cb73964e789ddf0d3.zip
cleaned up the directory
Diffstat (limited to 'lib/readline/examples/Makefile')
-rw-r--r--lib/readline/examples/Makefile44
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/readline/examples/Makefile b/lib/readline/examples/Makefile
deleted file mode 100644
index 2df2240..0000000
--- a/lib/readline/examples/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# This is the Makefile for the examples subdirectory of readline. -*- text -*-
-#
-# Copyright (C) 1994 Free Software Foundation, Inc.
-
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-
-EXECUTABLES = fileman rltest rl
-CFLAGS = -g -I../.. -I.. -DREADLINE_LIBRARY
-LDFLAGS = -g -L..
-
-.c.o:
- $(CC) $(CFLAGS) -c $<
-
-all: $(EXECUTABLES)
-
-
-rl: rl.o
- $(CC) $(LDFLAGS) -o $@ rl.o -lreadline -ltermcap
-
-fileman: fileman.o
- $(CC) $(LDFLAGS) -o $@ fileman.o -lreadline -ltermcap
-
-rltest: rltest.o
- $(CC) $(LDFLAGS) -o $@ rltest.o -lreadline -ltermcap
-
-rlcat: rlcat.o
- $(CC) $(LDFLAGS) -o $@ rlcat.o -lreadline -ltermcap
-
-fileman.o: fileman.c
-rltest.o: rltest.c
-rl.o: rl.c
-rlcat.o: rlcat.c