summaryrefslogtreecommitdiffstats
path: root/crypto/kerberosIV/Makefile.in
blob: afa77fbec745b214565a26534729f0ae5c659053 (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
59
60
61
62
63
64
65
66
67
68
69
70
# $Id: Makefile.in,v 1.30 1997/05/20 18:58:34 bg Exp $

srcdir		= @srcdir@
prefix		= @prefix@
VPATH		= @srcdir@

SHELL		= /bin/sh
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS = @top_srcdir@/mkinstalldirs
TRAVELKIT = appl/kauth/kauth kuser/klist appl/telnet/telnet/telnet \
	    appl/ftp/ftp/ftp appl/kx/kx appl/kx/rxtelnet

@SET_MAKE@

SUBDIRS		= util include lib kuser server slave admin kadmin appl man doc

all:
	for i in $(SUBDIRS); \
	do (cd $$i && $(MAKE) $(MFLAGS) all); done

Wall:
	make CFLAGS="-g -Wall -Wno-comment -Wmissing-prototypes -Wmissing-declarations -D__USE_FIXED_PROTOTYPES__"

check:
	cd lib && $(MAKE) $(MFLAGS) check

install:
	$(MKINSTALLDIRS) $(prefix)
	for i in $(SUBDIRS); \
	do (cd $$i && $(MAKE) $(MFLAGS) install); done

install-strip:
	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install

uninstall:
	for i in $(SUBDIRS); \
	do (cd $$i && $(MAKE) $(MFLAGS) uninstall); done

travelkit:	all
	$(MKINSTALLDIRS) tmp
	for i in $(TRAVELKIT); \
	do $(INSTALL_PROGRAM) $$i tmp; done
	(cd tmp; tar cf ../travelkit.tar `for i in $(TRAVELKIT); do basename $$i; done`)
	rm -rf tmp

travelkit-strip:
	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' travelkit

TAGS:
	find . -name '*.[chyl]' -print | etags -

clean:
	for i in $(SUBDIRS); \
	do (cd $$i && $(MAKE) $(MFLAGS) clean); done

mostlyclean:	clean

distclean:
	$(MAKE) clean
	for i in $(SUBDIRS); \
	do (cd $$i && $(MAKE) $(MFLAGS) distclean); done
	rm -f Makefile config.status config.cache config.log version.h newversion.h.in version.h.in *~

realclean:
	for i in $(SUBDIRS); \
	do (cd $$i && $(MAKE) $(MFLAGS) realclean); done

.PHONY: all install install-strip uninstall travelkit travelkit-strip clean distclean realclean mostlyclean
OpenPOWER on IntegriCloud