summaryrefslogtreecommitdiff
path: root/sal/test/makefile.mk
diff options
context:
space:
mode:
authorKay Ramme <kr@openoffice.org>2001-08-30 10:51:36 +0000
committerKay Ramme <kr@openoffice.org>2001-08-30 10:51:36 +0000
commit8dda258088d3a9ecf287caf71442a4ab0959be53 (patch)
tree82e744f04d82dbc42679ab013a0878fc34c1a7c6 /sal/test/makefile.mk
parent182c0091117db5d86fc5046b892552fb8e4b4087 (diff)
bootstrapping now supports local ini files (#88338#)
Diffstat (limited to 'sal/test/makefile.mk')
-rw-r--r--sal/test/makefile.mk44
1 files changed, 29 insertions, 15 deletions
diff --git a/sal/test/makefile.mk b/sal/test/makefile.mk
index aa4de097ec84..9b5cd3b6b343 100644
--- a/sal/test/makefile.mk
+++ b/sal/test/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.8 $
+# $Revision: 1.9 $
#
-# last change: $Author: jbu $ $Date: 2001-08-17 12:52:47 $
+# last change: $Author: kr $ $Date: 2001-08-30 11:51:36 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -94,9 +94,7 @@ APP1OBJS= \
$(OBJ)$/testbyteseq.obj \
$(OBJ)$/testuri.obj \
$(OBJ)$/test.obj \
- $(OBJ)$/testlogfile.obj \
- $(OBJ)$/test_file.obj
-
+ $(OBJ)$/testlogfile.obj
OBJFILES= \
$(APP1OBJS) \
$(APP2OBJS)
@@ -114,25 +112,41 @@ ALL : ALLTAR \
$(BIN)$/$(BOOTSTRAPSCRIPT) \
$(BIN)$/$(BOOTSTRAPINI) \
$(BIN)$/bootstraptest.ini \
- $(BIN)$/testbootstrap.bin \
- $(BIN)$/testbootstrap.Bin \
- $(BIN)$/testbootstrap.Exe
+ $(BIN)$/$(APP2TARGET).bin \
+ $(BIN)$/$(APP2TARGET).Bin \
+ $(BIN)$/$(APP2TARGET).Exe \
+ $(BIN)$/bootstrap.pl
+
.IF "$(GUI)"=="UNX"
-ALL: $(BIN)$/testbootstrap.exe
+ALL: $(BIN)$/$(APP2TARGET).exe \
+ $(BIN)$/inirc
-$(BIN)$/testbootstrap.exe : $(APP2TARGETN)
+$(BIN)$/$(APP2TARGET).exe : $(APP2TARGETN)
cp $(APP2TARGETN) $@
+$(BIN)$/inirc:
+ echo "MYBOOTSTRAPTESTVALUE=auxaux" > $@
+
+.ELSE
+
+ALL: $(BIN)$/ini.ini
+
+$(BIN)$/ini.ini:
+ echo MYBOOTSTRAPTESTVALUE=auxaux > $@
+
.ENDIF
-$(BIN)$/testbootstrap.bin : $(APP2TARGETN)
+$(BIN)$/bootstrap.pl:
+ cp bootstrap.pl $@
+
+$(BIN)$/$(APP2TARGET).bin : $(APP2TARGETN)
cp $(APP2TARGETN) $@
-$(BIN)$/testbootstrap.Bin : $(APP2TARGETN)
+$(BIN)$/$(APP2TARGET).Bin : $(APP2TARGETN)
cp $(APP2TARGETN) $@
-$(BIN)$/testbootstrap.Exe : $(APP2TARGETN)
+$(BIN)$/$(APP2TARGET).Exe : $(APP2TARGETN)
cp $(APP2TARGETN) $@
.ELSE
@@ -148,8 +162,8 @@ $(BIN)$/$(BOOTSTRAPSCRIPT) : $(BOOTSTRAPSCRIPT)
chmod ug+x $@
.ENDIF
-$(BIN)$/$(BOOTSTRAPINI) : testbootstrap.ini
- $(MY_SCRIPTCAT) testbootstrap.ini > $@
+$(BIN)$/$(BOOTSTRAPINI) : $(APP2TARGET).ini
+ $(MY_SCRIPTCAT) $(APP2TARGET).ini > $@
$(BIN)$/bootstraptest.ini : bootstraptest.ini
$(MY_SCRIPTCAT) bootstraptest.ini > $@