• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/ICU-531.30/icuSources/tools/pkgdata/

Lines Matching refs:targetDir

66 static int32_t pkg_createSymLinks(const char *targetDir, UBool specialHandling=FALSE);
72 static int32_t pkg_createWithoutAssemblyCode(UPKGOptions *o, const char *targetDir, const char mode);
75 static int32_t pkg_createWithAssemblyCode(const char *targetDir, const char mode, const char *gencFilePath);
76 static int32_t pkg_generateLibraryFile(const char *targetDir, const char mode, const char *objectFile, char *command = NULL, UBool specialHandling=FALSE);
77 static int32_t pkg_archiveLibrary(const char *targetDir, const char *version, UBool reverseExt);
409 o.targetDir = options[DESTDIR].value;
411 o.targetDir = "."; /* cwd */
419 o.tmpDir = o.targetDir;
542 char targetDir[SMALL_BUFFER_MAX_SIZE] = "";
553 uprv_strcpy(targetDir, o->install);
555 uprv_strcat(targetDir, PKGDATA_FILE_SEP_STRING);
556 uprv_strcat(targetDir, o->shortName);
560 fprintf(stdout, "# Install: Files mode, copying files to %s..\n", targetDir);
562 result = pkg_installFileMode(targetDir, o->srcDir, o->fileListFiles->str);
568 uprv_strcpy(targetDir, o->targetDir);
569 uprv_strcat(targetDir, PKGDATA_FILE_SEP_STRING);
593 uprv_strcpy(targetFileNamePath, targetDir);
661 sprintf(checkLibFile, "%s%s", targetDir, libFileNames[LIB_FILE_VERSION]);
668 result = pkg_installLibrary(o->install, targetDir, noVersion);
702 result = pkg_createWithAssemblyCode(targetDir, mode, gencFilePath);
711 result = pkg_installLibrary(o->install, targetDir, noVersion);
725 result = pkg_createWithoutAssemblyCode(o, targetDir, mode);
734 result = pkg_generateLibraryFile(targetDir, mode, gencFilePath);
739 result = pkg_createWithoutAssemblyCode(o, targetDir, mode);
757 result = pkg_archiveLibrary(targetDir, o->version, reverseExt);
766 result = pkg_createSymLinks(targetDir, o->pdsbuild);
768 result = pkg_createSymLinks(targetDir, noVersion);
785 result = pkg_installLibrary(o->install, targetDir, noVersion);
973 static int32_t pkg_createSymLinks(const char *targetDir, UBool specialHandling) {
987 targetDir,
1007 sprintf(cmd, "%s/%s", targetDir, libFileNames[LIB_FILE_OS390BATCH_VERSION]);
1010 targetDir,
1023 targetDir,
1051 targetDir,
1063 static int32_t pkg_installLibrary(const char *installDir, const char *targetDir, UBool noVersion) {
1068 targetDir,
1083 targetDir,
1096 targetDir,
1227 static int32_t pkg_archiveLibrary(const char *targetDir, const char *version, UBool reverseExt) {
1244 targetDir,
1246 targetDir,
1257 targetDir,
1269 targetDir,
1289 static int32_t pkg_generateLibraryFile(const char *targetDir, const char mode, const char *objectFile, char *command, UBool specialHandling) {
1305 length = uprv_strlen(pkgDataFlags[AR]) + uprv_strlen(pkgDataFlags[ARFLAGS]) + uprv_strlen(targetDir) +
1316 targetDir,
1324 targetDir,
1332 ((uprv_strlen(targetDir) + uprv_strlen(libFileNames[LIB_FILE_VERSION_TMP])) * 2) +
1337 length += uprv_strlen(targetDir) + uprv_strlen(libFileNames[LIB_FILE_CYGWIN_VERSION]);
1339 length += uprv_strlen(targetDir) + uprv_strlen(libFileNames[LIB_FILE_MINGW]);
1350 targetDir,
1353 targetDir,
1358 targetDir,
1361 targetDir,
1366 targetDir,
1370 targetDir,
1376 targetDir,
1460 static int32_t pkg_createWithAssemblyCode(const char *targetDir, const char mode, const char *gencFilePath) {
1493 return pkg_generateLibraryFile(targetDir, mode, tempObjectFile);
1525 static int32_t pkg_createWithoutAssemblyCode(UPKGOptions *o, const char *targetDir, const char mode) {
1696 result = pkg_generateLibraryFile(targetDir, mode, buffer, cmd, (o->pdsbuild && IN_DLL_MODE(mode)));
1698 result = pkg_generateLibraryFile(targetDir,mode, buffer, cmd);
1725 o->targetDir,
1732 o->targetDir,
1750 uprv_strcpy(dllFilePath, o->targetDir);