From: Yurii R. <yr...@us...> - 2003-02-03 06:31:18
|
Update of /cvsroot/eas-dev/eas-dev/components In directory sc8-pr-cvs1:/tmp/cvs-serv18441/components Modified Files: .cvsignore Makefile.am Log Message: mofidifed build process; changes to libsxmlstream (seems that it is still broken); minor additions over the project Index: .cvsignore =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- .cvsignore 2 Feb 2003 06:59:10 -0000 1.4 +++ .cvsignore 3 Feb 2003 06:30:45 -0000 1.5 @@ -3,4 +3,4 @@ openeas-basic.bin openeas-basic.rdb openeas.rdb -inc \ No newline at end of file +.include \ No newline at end of file Index: Makefile.am =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.am 25 Jan 2003 21:51:27 -0000 1.4 +++ Makefile.am 3 Feb 2003 06:30:45 -0000 1.5 @@ -1,8 +1,10 @@ -COMPONENTS = logger +COMPONENTS = gmp ODK = @ODK_PATH@ IDLC = @IDLC@ REGMERGE = @REGMERGE@ +RM = @RM@ + IDL_PATH = $(ODK)/idl BIN_PATH = openeas-basic.bin @@ -86,19 +88,25 @@ COMPONENTS_REGISTRY=$(patsubst %,%/bin/%.rdb,$(COMPONENTS)) -all-local: openeas.rdb +CLEANFILES = openeas.rdb openeas-basic.rdb + +clean-local: + rm -rf inc + +all-local: openeas.rdb openeas.rdb: $(COMPONENTS_REGISTRY) $(REGMERGE) openeas.rdb /UCR openeas-basic.rdb $(COMPONENTS_REGISTRY) + $(RM) -rf openeas-basic.rdb $(COMPONENTS_REGISTRY): openeas-basic.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) $(BASIC_URDS_) : $(BASIC_IDLS_) for idl in $(BASIC_IDLS); do \ |