summaryrefslogtreecommitdiffstats
path: root/src/include/Makefile.in
blob: 7999dad8d4375178837e01a5dbfeef96bb5edd97 (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
##DOSBUILDTOP = ..
##DOS!include $(BUILDTOP)\config\windows.in

all:: all-$(WHAT)

all-unix::
all-mac::

all-windows::
	copy $(BUILDTOP)\util\et\com_err.h .
	copy $(BUILDTOP)\util\profile\profile.h .
	if not exist gssapi\nul mkdir gssapi
	copy $(BUILDTOP)\lib\gssapi\generic\gssapi.h gssapi
	copy $(BUILDTOP)\lib\gssapi\generic\gssapi_generic.h gssapi
	cd krb5
	@echo Making in include\krb5
	-$(MAKE) -$(MFLAGS) LIBCMD=$(LIBCMD)
	cd ..

clean:: clean-$(WHAT)

clean-unix::
clean-mac::

clean-windows::
	$(RM) com_err.h
	$(RM) gssapi\gssapi.h gssapi\gssapi_generic.h
	if exist gssapi\nul rmdir gssapi
	cd krb5
	@echo Making clean in include\krb5
	-$(MAKE) -$(MFLAGS) clean
	cd ..
	@echo Making clean locally

KRB5_HEADERS = krb5.h k5-int.h

install::
	@set -x; for f in $(KRB5_HEADERS) ; \
	do $(INSTALL_DATA) $(srcdir)$(S)$$f	\
		$(DESTDIR)$(KRB5_INCDIR)$(S)$$f ; \
	done