ICU-4901 Make files mode work better.

X-SVN-Rev: 19294
This commit is contained in:
George Rhoten 2006-02-27 04:20:12 +00:00
parent b8352c122c
commit 5d15b21a8d
2 changed files with 5 additions and 1 deletions

View File

@ -79,7 +79,10 @@ void pkg_mode_files(UPKGOptions *o, FileStream *makefile, UErrorCode *status)
const char *baseName;
T_FileStream_writeLine(makefile, "\n.PHONY: $(NAME) all install clean\n\nall: $(NAME)\n\n");
#ifndef U_MAKE_IS_NMAKE
T_FileStream_writeLine(makefile, "\n.PHONY: $(NAME) all install clean\n");
#endif
T_FileStream_writeLine(makefile, "\nall: $(NAME)\n\n");
infiles = o->files; /* raw files - no paths other than tree paths */

View File

@ -63,6 +63,7 @@ pkg_mak_writeHeader(FileStream *f, const UPKGOptions *o)
"TARGET_VERSION=%s\n"
"MKINSTALLDIRS=mkdir\n"
"INSTALL_DATA=copy\n"
"RMV=del /F"
"\n\n\n",
o->shortName,
(appendVersion ? appendVersion : ""),