view readline/examples/Makefile.in @ 2588:ccd72573a0cf

[project @ 1996-12-12 08:26:55 by jwe]
author jwe
date Thu, 12 Dec 1996 08:28:49 +0000
parents 76d255496b89
children 939bc9157319
line wrap: on
line source

# This is the Makefile for the examples subdirectory of readline. -*- text -*-
#

EXECUTABLES = fileman
CFLAGS  = -g -I../..
LDFLAGS = -g -L..

DISTFILES = Inputrc Makefile.in fileman.c histexamp.c manexamp.c

fileman: fileman.o
	$(CC) $(LDFLAGS) -o fileman fileman.o -lreadline -ltermcap

fileman.o: fileman.c
  
dist:
	ln $(DISTFILES) ../../`cat ../../.fname`/readline/examples
.PHONY: dist

clean:
.PHONY: clean

distclean mostlyclean maintainer-clean:
	rm -f Makefile
.PHONY: distclean mostlyclean maintainer-clean