ICU-4901 Make files mode work better.
X-SVN-Rev: 19294
This commit is contained in:
parent
b8352c122c
commit
5d15b21a8d
@ -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 */
|
||||
|
||||
|
@ -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 : ""),
|
||||
|
Loading…
Reference in New Issue
Block a user