#
# $Id: Makefile,v 1.1 1996/06/02 08:17:02 morgan Exp $
#
# $Log: Makefile,v $
# Revision 1.1  1996/06/02 08:17:02  morgan
# Initial revision
#
#
# This directory contains a pam_filter filter executable
#
# Created by Andrew Morgan <morgan@physics.ucla.edu> 1996/3/11
#

TITLE=upperLOWER

#

OBJS = $(TITLE).o

####################### don't edit below #######################

dummy:
	@echo "**** This is not a top-level Makefile "

all: $(TITLE)

$(TITLE): $(OBJS)
	$(CC) -o $(TITLE) $(OBJS)
	strip $(TITLE)

install:
	mkdir -p $(FILTERSDIR)
	install -m511 $(TITLE) $(FILTERSDIR)

remove:
	cd $(FILTERSDIR) && rm -f $(TITLE)

clean:
	rm -f $(TITLE) $(OBJS) core *~

extraclean:
	@make clean
	rm -f *.bak

.c.o:	
	$(CC) $(CFLAGS) -c $<

