mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
13 lines
245 B
Makefile
13 lines
245 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
|
|
|