mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-01 09:29:51 +02:00
13 lines
248 B
Makefile
13 lines
248 B
Makefile
# 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
|
|
|