mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 00:34:33 -05:00
Really we don't need copy of this library into each program (gdb f.e.) P.S. it is much cleaner port than /usr/ports version and based on /usr/ports version. /usr/ports version will be removed.
12 lines
248 B
Makefile
12 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
|
|
|