blob: 3d1fc527a628bb269b07744c7563ed95e1b21181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# This is the Makefile for the examples subdirectory of readline. -*- text -*-
#
EXECUTABLES = fileman
CFLAGS = -g -I../..
LDFLAGS = -g -L..
fileman: fileman.o
$(CC) $(LDFLAGS) -o fileman fileman.o -lreadline -ltermcap
fileman.o: fileman.c
|