summaryrefslogtreecommitdiffstats
path: root/ldap/clients/dsgw/admhtml/Makefile
blob: a8cfafee3b1671113f5560a84887629cd98146ef (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 = ../../..
MCOM_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 $(MCOM_ROOT)/ldapserver/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 $(MCOM_ROOT)/ldapserver/nsconfig.mk
include $(LDAP_SRC)/nsldap.mk