Update of /cvsroot/eas-dev/eas-dev/components
In directory sc8-pr-cvs1:/tmp/cvs-serv14891/components
Modified Files:
Makefile.am
Log Message:
Minor changes in build process; package-related GNUish files
Index: Makefile.am
===================================================================
RCS file: /cvsroot/eas-dev/eas-dev/components/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Makefile.am 4 Feb 2003 04:17:13 -0000 1.7
+++ Makefile.am 4 Feb 2003 07:52:25 -0000 1.8
@@ -1,4 +1,4 @@
-COMPONENTS = gmp
+COMPONENTS = logger
ODK = @ODK_PATH@
IDLC = @IDLC@
REGMERGE = @REGMERGE@
@@ -6,7 +6,7 @@
RM = @RM@
IDL_PATH = $(ODK)/idl
-BIN_PATH = openeas-basic.bin
+BIN_PATH = .openeas.urd
BASIC_IDLS = com/sun/star/uno/Exception.idl \
com/sun/star/uno/NamingService.idl \
@@ -118,25 +118,24 @@
COMPONENTS_REGISTRY=$(patsubst %,%/bin/%.rdb,$(COMPONENTS))
-CLEANFILES = openeas.rdb openeas-basic.rdb
+CLEANFILES = openeas.rdb .openeas.rdb
clean-local:
- rm -rf .include
+ $(RM) -rf .include
+ $(RM) -rf $(BIN_PATH)
all-local: openeas.rdb
openeas.rdb: $(COMPONENTS_REGISTRY)
- $(REGMERGE) openeas.rdb /UCR openeas-basic.rdb $(COMPONENTS_REGISTRY)
- $(RM) -rf openeas-basic.rdb
+ $(REGMERGE) openeas.rdb /UCR .openeas.rdb $(COMPONENTS_REGISTRY)
-$(COMPONENTS_REGISTRY): openeas-basic.rdb
+$(COMPONENTS_REGISTRY): .openeas.rdb
for dir in $(COMPONENTS); do \
$(MAKE) -C $$dir; \
done
-openeas-basic.rdb: $(BASIC_URDS_)
- $(REGMERGE) openeas-basic.rdb /UCR $(BASIC_URDS_)
- $(RM) -rf $(BIN_PATH)
+.openeas.rdb: $(BASIC_URDS_)
+ $(REGMERGE) .openeas.rdb /UCR $(BASIC_URDS_)
$(BASIC_URDS_) : $(BASIC_IDLS_)
for idl in $(BASIC_IDLS); do \
|