summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/Imakefile
blob: ec6ff73b37f813b7c79c7bb03ea8dfa83b91f07a (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
#	$Source$
#	$Author$
#	$Id$
#
#  Copyright 1990 by the Massachusetts Institute of Technology.
# 
#  For copying and distribution information, please see the file
#  <krb5/copyright.h>.
# 
#define IHaveSubdirs
#define PassCDebugFlags
NormalLibraryObjectRule()

        SUBDIRS = error_tables asn.1 ccache keytab krb rcache free os kdb des crc-32 krb425 rsa-md4
#ifdef HasVfprintf
VPOBJS=
VPSRCS=
#else
VPOBJS=vfprintf.o vsprintf.o
VPSRCS=vfprintf.c vsprintf.c
#endif
#ifdef HasVsyslog
VSOBJS=
VSSRCS=
#else
VSOBJS=syslog.o
VSSRCS=syslog.c
#endif

INCLUDES=-I$(TOP)/include/stdc-incl

OBJS =	\
	cryptoconf.o \
	perror.o \
	$(VSOBJS) $(VPOBJS)

SRCS =	\
	cryptoconf.c \
	perror.c \
	$(VSSRCS) $(VPSRCS)

all::;	(cd asn.1; make Makefile)

MakeSubdirs($(SUBDIRS))

AdditiveLibraryTarget(krb5,$(OBJS))