aboutsummaryrefslogtreecommitdiff
path: root/src/util/Makefile.in
blob: 3b4fd5d9bfc7494c03e5130f92db8c50a28940b1 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
thisconfigdir=./..
myfulldir=util
mydir=util
MY_SUBDIRS=et ss profile pty dyn db2 send-pr
BUILDTOP=$(REL)$(U)

MAC_SUBDIRS = profile et

editsh = sed -e 's,@''ARADD''@,$(ARADD),g' -e 's,@''ARCHIVE''@,$(ARCHIVE),g'
HOST_TYPE=@HOST_TYPE@
HAVE_GCC=@HAVE_GCC@
SLIBSH=sed -e 's,@''CC''@,$(CC),g' -e 's,@''HOST_TYPE''@,$(HOST_TYPE),g' -e 's,@''HAVE_GCC''@,$(HAVE_GCC),g'

all-recurse: libupdate makeshlib
all-mac::

NO_OUTDIR=1
all-windows::
	@echo Making in util\windows
	cd windows
	$(MAKE) -$(MFLAGS)
	@echo Making in util\et
	cd ..\et
	$(MAKE) -$(MFLAGS) 
	@echo Making in util\profile
	cd ..\profile
	$(MAKE) -$(MFLAGS) 
	cd ..

clean-windows::
	@echo Making clean in util\windows
	cd windows
	$(MAKE) -$(MFLAGS) clean
	@echo Making clean in util\et
	cd ..\et
	$(MAKE) -$(MFLAGS) clean
	@echo Making clean in util\profile
	cd ..\profile
	$(MAKE) -$(MFLAGS) clean
	cd ..

# this is necessary because the db2 build, which is intended to be
# standalone, of course does not know to make symlinks in the right
# magic places in the krb5 build tree so other parts of the tree can
# find db2.  So we make those links here.  this can't use CopyHeader,
# because there's no way in this make setup to do stuff after the
# subdirectory recursion.  fortunately, one does not need a
# destination to make a link...

all-unix::
	$(RM) ../include/db.h ../include/db-config.h ../include/db-ndbm.h \
		../lib/libdb.a
	ln -s ../util/db2/obj/db.h ../include
	ln -s ../util/db2/obj/db-config.h ../include
	ln -s ../util/db2/obj/libdb.a ../lib
	if test '$(srcdir)' = . ; then \
		ln -s ../util/db2/include/db-ndbm.h ../include; \
	else \
		ln -s $(srcdir)/db2/include/db-ndbm.h ../include; \
	fi

clean-unix::
	$(RM) ../include/db.h ../include/db-config.h ../include/db-ndbm.h \
		../lib/libdb.a

unixmac: libupdate

libupdate: $(srcdir)/libupdate.sh
	$(RM) $@ $@.tmp
	$(editsh) $(srcdir)/libupdate.sh > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@

makeshlib: $(srcdir)/makeshlib.sh Makefile
	 $(RM) $@ $@.tmp
	 $(SLIBSH) $(srcdir)/makeshlib.sh >$@.tmp&&chmod a+x $@.tmp&&mv $@.tmp $@


#
# We only need this for AIX, but we generate it for all systems.
#
all-unix:: aix.bincmds

aix.bincmds: Makefile
	 echo libpath $(KRB5_LIBDIR):`pwd`/$(TOPLIBD):/usr/lib:/lib >aix.bincmds
clean::
	$(RM) libupdate makeshlib

install::
	@echo nothing to install in util