Update of /cvsroot/eas-dev/eas-dev/build/unix/mk
In directory sc8-pr-cvs1:/tmp/cvs-serv1137/build/unix/mk
Modified Files:
component.mk.in document.mk.in
Log Message:
Misc. changes in build process, document authoring process
Index: component.mk.in
===================================================================
RCS file: /cvsroot/eas-dev/eas-dev/build/unix/mk/component.mk.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- component.mk.in 23 Jan 2003 03:42:05 -0000 1.3
+++ component.mk.in 25 Jan 2003 02:51:50 -0000 1.4
@@ -62,7 +62,7 @@
$(BIN_PATH)/lib$(COMPONENT).so: $(AUTOCODE)
$(MAKE) -C $(SRC_PATH)
- $(LN_S) ../$(SRC_PATH)/.libs/lib$(COMPONENT).so $(BIN_PATH)/lib$(COMPONENT).so
+ $(LN_S) -f ../$(SRC_PATH)/.libs/lib$(COMPONENT).so $(BIN_PATH)/lib$(COMPONENT).so
$(AUTOCODE) : $(BIN_PATH)/$(COMPONENT).rdb ../openeas-basic.rdb
$(CODEMAKER)maker -BUCR -O$(INC_PATH) $(TYPES) $(BIN_PATH)/$(COMPONENT).rdb ../openeas-basic.rdb
Index: document.mk.in
===================================================================
RCS file: /cvsroot/eas-dev/eas-dev/build/unix/mk/document.mk.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- document.mk.in 21 Jan 2003 00:44:26 -0000 1.1
+++ document.mk.in 25 Jan 2003 02:51:50 -0000 1.2
@@ -1,2 +1,15 @@
-XSLTPROC = @XSLTPROC@
+ifndef TYPE
+ TYPE = book
+endif
+
+
+all: html/index.html pdf/book.pdf
+
+html/index.html:
+ mkdir -p html
+ docbook2html $(TYPE).xml --output html
+
+pdf/book.pdf:
+ mkdir -p pdf
+ docbook2pdf $(TYPE).xml --output pdf
|