summaryrefslogtreecommitdiffstats
path: root/contrib/libpam/modules/pam_filter/upperLOWER/Makefile
blob: 09b693bf680315e217272bb9cd87ecfe4fa08e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#
# $Id: Makefile,v 1.5 1997/04/05 06:41:35 morgan Exp $
#
# $Log: Makefile,v $
# Revision 1.5  1997/04/05 06:41:35  morgan
# fakeroot
#
# Revision 1.4  1997/01/04 20:25:04  morgan
# removed need for make
#
# Revision 1.3  1996/11/10 20:13:08  morgan
# email address
#
# Revision 1.2  1996/11/10 20:12:24  morgan
# cross platform support
#
# 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@parc.power.net> 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) $(FAKEROOT)$(FILTERSDIR)
	$(INSTALL) -m 511 $(TITLE) $(FAKEROOT)$(FILTERSDIR)

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

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

extraclean: clean
	rm -f *.bak

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

OpenPOWER on IntegriCloud