13 lines
266 B
Text
13 lines
266 B
Text
|
# This is the Makefile for the examples subdirectory of readline. -*- text -*-
|
||
|
#
|
||
|
|
||
|
EXECUTABLES = fileman
|
||
|
CFLAGS = -g -I../.. -D__MSDOS__ -D__GO32__
|
||
|
LDFLAGS = -g -L..
|
||
|
|
||
|
fileman: fileman.o
|
||
|
$(CC) $(LDFLAGS) -o fileman fileman.o -lreadline -lpc
|
||
|
|
||
|
fileman.o: fileman.c
|
||
|
|