13 lines
266 B
Plaintext
13 lines
266 B
Plaintext
# 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
|
|
|