view readline/examples/Makefile.in @ 1436:fa4faf65f88d

[project @ 1995-09-19 07:47:24 by jwe] Initial revision
author jwe
date Tue, 19 Sep 1995 07:48:09 +0000
parents
children 0b5abd833621
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
  
local-dist:
	ln $(DISTFILES) ../../`cat ../../.fname`/readline/examples
.PHONY: local-dist

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