#
#      "@(#)Makefile 1.48 98/12/09"
#
# Copyright (c) 1992-1996 Sun Microsystems, Inc.  All Rights Reserved.
#

# Makefile for miscellaneous files
#
# FILES are those things that are just used as is
########

include $(SRC)/Makefile.master

NETROOT =	$(DISK0_ROOT)/.tmp_proto/root/.netscape

SUBDIRS = 	plugins

all:=		TARGET=	all
install:=	TARGET=	install
install_h:=	TARGET= install_h
clean:=		TARGET=	clean
clobber:=	TARGET=	clobber

# SCRIPTS are .sh files, use the default rules
NETFILES = 	bookmarks.html key3.db cert7.db preferences.js \
		secmodule.db history.db plugin-list registry signedapplet.db

NETFILESPROG = $(NETFILES:%=$(NETROOT)/%)

.KEEP_STATE:

all install: $(SUBDIRS) $(NETFILESPROG)

$(NETROOT)/%: %
	$(INS.file)

$(SUBDIRS): FRC
	cd $@; pwd; $(MAKE) $(TARGET)

clean clobber: $(SUBDIRS)
	$(RM) $(NETFILESPROG)

FRC:

.KEEP_STATE:

