General cleanup.

This commit is contained in:
briano%netscape.com 1999-09-15 03:00:30 +00:00
parent 0c5385ed6f
commit 89d8209cf8
11 changed files with 67 additions and 77 deletions

View File

@ -13,22 +13,19 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
#
DEPTH = ../..
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
LIBRARY_NAME=profile
IS_COMPONENT=1
LIBRARY_NAME = profile
IS_COMPONENT = 1
CPPSRCS = \
nsAccount.cpp \
$(NULL)
include $(topsrcdir)/config/config.mk
CPPSRCS = nsAccount.cpp
include $(topsrcdir)/config/rules.mk

View File

@ -13,17 +13,16 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
#
DEPTH = ..
DEPTH = ..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = public src resources defaults idlservices pref-migrator
include $(topsrcdir)/config/config.mk
DIRS = public src resources defaults idlservices pref-migrator
include $(topsrcdir)/config/rules.mk

View File

@ -22,12 +22,8 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
FILES = bookmarks.html
FILES := $(addprefix $(srcdir)/, $(FILES))
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(FILES) $(DIST)/bin/defaults
$(INSTALL) $(srcdir)/bookmarks.html $(DIST)/bin/defaults

View File

@ -22,8 +22,8 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
LIBRARY_NAME = profileservices
MODULE = profileservices
LIBRARY_NAME = profileservices
IS_COMPONENT = 1
REQUIRES = profileservices raptor xpcom

View File

@ -13,17 +13,16 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
#
DEPTH = ../..
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS=public src resources
DIRS = public src resources
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/config/rules.mk
include $(topsrcdir)/config/rules.mk

View File

@ -17,20 +17,21 @@
DEPTH = ../../..
topsrcdir = @top_srcdir@
VPATH = @srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE=prefmigr
MODULE = prefmigr
XPIDLSRCS = nsIPrefMigrationProgress.idl \
nsIPrefMigration.idl \
$(NULL)
EXPORTS = nsPrefMigrationCIDs.h
EXPORTS= nsPrefMigrationCIDs.h \
XPIDLSRCS = \
nsIPrefMigrationProgress.idl \
nsIPrefMigration.idl \
$(NULL)
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
include $(topsrcdir)/config/rules.mk

View File

@ -25,10 +25,10 @@ include $(DEPTH)/config/autoconf.mk
SAMPLES_DIR = $(DIST)/bin/res/profile
EXPORT_RESOURCE_SAMPLES = \
prefmProgress.xul \
progress_undetermined.xul \
prefmProgress.css \
$(NULL)
prefmProgress.xul \
progress_undetermined.xul \
prefmProgress.css \
$(NULL)
include $(topsrcdir)/config/rules.mk
@ -36,3 +36,4 @@ GARBAGE += $(addprefix $(SAMPLES_DIR)/, $(EXPORT_RESOURCE_SAMPLES))
install::
$(INSTALL) $(addprefix $(srcdir)/, $(EXPORT_RESOURCE_SAMPLES)) $(SAMPLES_DIR)

View File

@ -13,39 +13,39 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
#
DEPTH = ../../..
DEPTH = ../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
LIBRARY_NAME=nsprefm
LIBRARY_NAME = nsprefm
IS_COMPONENT = 1
IS_COMPONENT=1
CPPSRCS = \
nsPMProgressDlg.cpp \
nsPrefMigration.cpp \
nsPrefMigrationFactory.cpp \
$(NULL)
EXPORTS=nsPrefMigration.h \
nsPrefMigrationFactory.h \
$(NULL)
EXPORTS = \
nsPrefMigration.h \
nsPrefMigrationFactory.h \
$(NULL)
CPPSRCS = \
nsPMProgressDlg.cpp \
nsPrefMigration.cpp \
nsPrefMigrationFactory.cpp \
$(NULL)
EXTRA_DSO_LDOPTS = \
$(MOZ_NECKO_UTIL_LIBS) \
-L$(DIST)/bin \
$(NSPR_LIBS) \
-lxpcom \
$(NULL)
EXTRA_DSO_LDOPTS = \
$(MOZ_NECKO_UTIL_LIBS) \
-L$(DIST)/bin \
$(NSPR_LIBS) \
-lxpcom \
$(NULL)
include $(topsrcdir)/config/rules.mk
ifeq ($(OS_ARCH), Linux)
DEFINES += -D_BSD_SOURCE
DEFINES += -D_BSD_SOURCE
endif

View File

@ -17,18 +17,18 @@
DEPTH = ../..
topsrcdir = @top_srcdir@
VPATH = @srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
XPIDLSRCS = nsIProfile.idl
MODULE = profile
MODULE = profile
EXPORTS = \
profileSwitch.h \
$(NULL)
EXPORTS = profileSwitch.h
XPIDLSRCS = nsIProfile.idl
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
include $(topsrcdir)/config/rules.mk

View File

@ -40,10 +40,8 @@ FILES = \
test-tab4.xul \
$(NULL)
FILES := $(addprefix $(srcdir)/, $(FILES))
include $(topsrcdir)/config/rules.mk
install::
$(INSTALL) $(FILES) $(DIST)/bin/res/profile
$(INSTALL) $(addprefix $(srcdir)/, $(FILES)) $(DIST)/bin/res/profile

View File

@ -13,27 +13,26 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
#
DEPTH = ../..
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
LIBRARY_NAME=profile
IS_COMPONENT=1
LIBRARY_NAME = profile
IS_COMPONENT = 1
CPPSRCS = \
nsProfile.cpp \
$(NULL)
CPPSRCS = nsProfile.cpp
EXTRA_DSO_LDOPTS = \
$(MOZ_NECKO_UTIL_LIBS) \
-L$(DIST)/bin \
-lxpcom \
$(NSPR_LIBS) \
$(NULL)
EXTRA_DSO_LDOPTS = \
$(MOZ_NECKO_UTIL_LIBS) \
-L$(DIST)/bin \
-lxpcom \
$(NSPR_LIBS) \
$(NULL)
include $(topsrcdir)/config/rules.mk