3b1730d98f
X-SVN-Rev: 8080
220 lines
6.5 KiB
C
220 lines
6.5 KiB
C
/******************************************************************************
|
|
*
|
|
* Copyright (C) 2000, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
*
|
|
*******************************************************************************
|
|
* file name: winmode.c
|
|
* encoding: ANSI X3.4 (1968)
|
|
* tab size: 8 (not used)
|
|
* indentation:4
|
|
*
|
|
* created on: 2000july14
|
|
* created by: Vladimir Weinstein
|
|
*
|
|
* This program packages the ICU data into different forms
|
|
* (DLL, common data, etc.)
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "unicode/utypes.h"
|
|
#include "unicode/putil.h"
|
|
#include "cmemory.h"
|
|
#include "cstring.h"
|
|
#include "filestrm.h"
|
|
#include "toolutil.h"
|
|
#include "unewdata.h"
|
|
#include "uoptions.h"
|
|
#include "pkgtypes.h"
|
|
#include "makefile.h"
|
|
|
|
#define WINBUILDMODE (*(o->options)=='R'?"Release":"Debug")
|
|
|
|
void writeCmnRules(UPKGOptions *o, FileStream *makefile)
|
|
{
|
|
char tmp[1024];
|
|
CharList *infiles;
|
|
|
|
infiles = o->filePaths;
|
|
|
|
sprintf(tmp, "\"$(TARGETDIR)\\$(CMNTARGET)\" : $(DATAFILEPATHS)\n\t@\"$(GENCMN)\" -C \"%s\" -d \"%s\" -n \"$(CNAME)\" 1000000 <<\n",
|
|
o->comment, o->targetDir);
|
|
T_FileStream_writeLine(makefile, tmp);
|
|
|
|
pkg_writeCharList(makefile, infiles, "\n", -1);
|
|
/*
|
|
for(;infiles;infiles = infiles->next) {
|
|
if(infiles->str[0] != '"' && infiles->str[uprv_strlen(infiles->str)-1] != '"') {
|
|
sprintf(tmp, "\"%s\"\n", infiles->str);
|
|
} else {
|
|
sprintf(tmp, "%s\n", infiles->str);
|
|
}
|
|
T_FileStream_writeLine(makefile, tmp);
|
|
}
|
|
*/
|
|
sprintf(tmp, "\n<<\n");
|
|
T_FileStream_writeLine(makefile, tmp);
|
|
}
|
|
|
|
|
|
|
|
void pkg_mode_windows(UPKGOptions *o, FileStream *makefile, UErrorCode *status) {
|
|
char tmp[1024];
|
|
char tmp2[1024];
|
|
const char *separator = o->icuroot[uprv_strlen(o->icuroot)-1]=='\\'?"":"\\";
|
|
UBool isDll = (UBool)(uprv_strcmp(o->mode, "dll") == 0);
|
|
UBool isStatic = (UBool)(uprv_strcmp(o->mode, "static") == 0);
|
|
|
|
if(U_FAILURE(*status)) {
|
|
return;
|
|
}
|
|
|
|
sprintf(tmp2, "ICUROOT=%s\n\n", o->icuroot);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
|
|
sprintf(tmp2,
|
|
"GENCMN = $(ICUROOT)%sbin\\gencmn.exe\n", separator);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
|
|
if(isDll) {
|
|
uprv_strcpy(tmp, LIB_PREFIX "$(CNAME)" UDATA_SO_SUFFIX);
|
|
|
|
if(o->nooutput || o->verbose) {
|
|
fprintf(stdout, "# Output %s file: %s%s%s\n", UDATA_SO_SUFFIX, o->targetDir, U_FILE_SEP_STRING, tmp);
|
|
}
|
|
|
|
if(o->nooutput) {
|
|
*status = U_ZERO_ERROR;
|
|
return;
|
|
}
|
|
|
|
sprintf(tmp2, "# DLL file to make:\nDLLTARGET=%s\n\n", tmp);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
|
|
sprintf(tmp2,
|
|
"LINK32 = link.exe\n"
|
|
"LINK32_FLAGS = /nologo /out:\"$(TARGETDIR)\\$(DLLTARGET)\" /DLL /NOENTRY /base:\"0x4ad00000\" /implib:\"$(TARGETDIR)\\$(ENTRYPOINT).lib\" /comment:\"%s\"\n",
|
|
o->comment
|
|
);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
|
|
sprintf(tmp2,
|
|
"GENCCODE = $(ICUROOT)%sbin\\genccode.exe\n", separator);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
|
|
T_FileStream_writeLine(makefile, "\n"
|
|
"# Windows specific DLL version information.\n"
|
|
"!IF EXISTS(\".\\icudata.res\")\n"
|
|
"DATA_VER_INFO=\".\\icudata.res\"\n"
|
|
"!ELSE\n"
|
|
"DATA_VER_INFO=\n"
|
|
"!ENDIF\n\n");
|
|
|
|
|
|
uprv_strcpy(tmp, UDATA_CMN_PREFIX "$(CNAME)" UDATA_CMN_INTERMEDIATE_SUFFIX OBJ_SUFFIX);
|
|
|
|
sprintf(tmp2, "# intermediate obj file:\nCMNOBJTARGET=%s\n\n", tmp);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
}
|
|
else if (isStatic)
|
|
{
|
|
uprv_strcpy(tmp, LIB_PREFIX "$(CNAME)" UDATA_LIB_SUFFIX);
|
|
|
|
pkg_sttc_writeReadme(o, tmp, status);
|
|
fprintf(stdout, "HEY! wrote to readme. -> %s\n", u_errorName(*status));
|
|
|
|
if(U_FAILURE(*status))
|
|
{
|
|
return;
|
|
}
|
|
|
|
if(o->nooutput || o->verbose) {
|
|
fprintf(stdout, "# Output %s file: %s%s%s\n", UDATA_SO_SUFFIX, o->targetDir, U_FILE_SEP_STRING, tmp);
|
|
}
|
|
|
|
if(o->nooutput) {
|
|
*status = U_ZERO_ERROR;
|
|
return;
|
|
}
|
|
|
|
sprintf(tmp2, "# LIB file to make:\nDLLTARGET=%s\n\n", tmp);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
|
|
sprintf(tmp2,
|
|
"LINK32 = LIB.exe\n"
|
|
"LINK32_FLAGS = /nologo /out:\"$(TARGETDIR)\\$(DLLTARGET)\" /EXPORT:\"%s\"\n",
|
|
o->cShortName
|
|
);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
|
|
sprintf(tmp2,
|
|
"GENCCODE = $(ICUROOT)%sbin\\genccode.exe\n", separator);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
|
|
T_FileStream_writeLine(makefile, "\n"
|
|
"# Windows specific LIB version information.\n"
|
|
"!IF EXISTS(\".\\icudata.res\")\n"
|
|
"DATA_VER_INFO=\".\\icudata.res\"\n"
|
|
"!ELSE\n"
|
|
"DATA_VER_INFO=\n"
|
|
"!ENDIF\n\n");
|
|
|
|
|
|
uprv_strcpy(tmp, UDATA_CMN_PREFIX "$(CNAME)" UDATA_CMN_INTERMEDIATE_SUFFIX OBJ_SUFFIX);
|
|
|
|
sprintf(tmp2, "# intermediate obj file:\nCMNOBJTARGET=%s\n\n", tmp);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
}
|
|
uprv_strcpy(tmp, UDATA_CMN_PREFIX "$(CNAME)" UDATA_CMN_SUFFIX);
|
|
|
|
|
|
|
|
if(o->nooutput || o->verbose) {
|
|
fprintf(stdout, "# Output file: %s%s%s\n", o->targetDir, U_FILE_SEP_STRING, tmp);
|
|
}
|
|
|
|
if(o->nooutput) {
|
|
*status = U_ZERO_ERROR;
|
|
return;
|
|
}
|
|
|
|
sprintf(tmp2, "# common file to make:\nCMNTARGET=%s\n\n", tmp);
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
|
|
|
|
if(isDll || isStatic) {
|
|
sprintf(tmp, "all: \"$(TARGETDIR)\\$(DLLTARGET)\"\n\n");
|
|
T_FileStream_writeLine(makefile, tmp);
|
|
|
|
sprintf(tmp, "\"$(TARGETDIR)\\$(DLLTARGET)\": \"$(TARGETDIR)\\$(CMNOBJTARGET)\"\n"
|
|
"\t$(LINK32) $(LINK32_FLAGS) \"$(TARGETDIR)\\$(CMNOBJTARGET)\" $(DATA_VER_INFO)\n\n");
|
|
T_FileStream_writeLine(makefile, tmp);
|
|
sprintf(tmp, "\"$(TARGETDIR)\\$(CMNOBJTARGET)\": \"$(TARGETDIR)\\$(CMNTARGET)\"\n"
|
|
"\t@\"$(GENCCODE)\" $(GENCOPTIONS) -e $(ENTRYPOINT) -o -d \"$(TARGETDIR)\" \"$(TARGETDIR)\\$(CMNTARGET)\"\n\n");
|
|
T_FileStream_writeLine(makefile, tmp);
|
|
|
|
sprintf(tmp2,
|
|
"clean:\n"
|
|
"\t-@erase \"$(TARGETDIR)\\$(DLLTARGET)\"\n"
|
|
"\t-@erase \"$(TARGETDIR)\\$(CMNOBJTARGET)\"\n"
|
|
"\t-@erase \"$(TARGETDIR)\\$(CMNTARGET)\"\n\n");
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
} else { /* common */
|
|
sprintf(tmp, "all: \"$(TARGETDIR)\\$(CMNTARGET)\"\n\n");
|
|
T_FileStream_writeLine(makefile, tmp);
|
|
|
|
sprintf(tmp2,
|
|
"clean:\n"
|
|
"\t-@erase \"$(TARGETDIR)\\$(CMNTARGET)\"\n\n");
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
}
|
|
|
|
sprintf(tmp2, "rebuild: clean all\n\n");
|
|
T_FileStream_writeLine(makefile, tmp2);
|
|
|
|
/* Write compile rules */
|
|
writeCmnRules(o, makefile);
|
|
}
|
|
|