blob: e82a8c251ec488e8942a0b9f30a701b64adb4229 (
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
|
#
# PROPRIETARY/CONFIDENTIAL. Use of this product is subject to
# license terms. Copyright © 2001 Sun Microsystems, Inc.
# Some preexisting portions Copyright © 2001 Netscape Communications Corp.
# All rights reserved.
#
#
# Gmakefile for Directory Server Gateway html files.
#
LDAP_SRC = ../../..
BUILD_ROOT = ../../../..
NOSTDSTRIP=true # don't let nsconfig.mak define target strip
NOSTDCLEAN=true # don't let nsconfig.mak define target clean
NOSTDDEPEND=true # don't let nsconfig.mak define target depend
include $(BUILD_ROOT)/nsdefs.mk
include ../dsgw_include.mk
HTMLDEST = $(DSGW_HTML_RELDIR)
HTML= auth.html authroot.html authtitle.html csearchtitle.html greeting.html \
index.html maintitle.html newentrytitle.html searchtitle.html \
back.gif back1.gif blankbut.gif content.gif content1.gif country.gif \
exit1.gif forward1.gif group.gif index1.gif netscape.gif \
organization.gif orgunit.gif person.gif title.gif triangle.gif
BINS=$(addprefix $(HTMLDEST)/,$(HTML))
# install: $(HTMLDEST) $(BINS) inst-manual inst-info
install:
all: install
clean:
$(RM) $(BINS)
$(HTMLDEST)/%: %
-@$(RM) $@
cp $< $@
$(HTMLDEST)/%.gif: %.gif
-@$(RM) $@
cp $< $@
strip:
depend:
include $(BUILD_ROOT)/nsconfig.mk
include $(LDAP_SRC)/nsldap.mk
|