diff options
Diffstat (limited to 'gettext-runtime/lib/Makefile.msvc')
-rw-r--r-- | gettext-runtime/lib/Makefile.msvc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gettext-runtime/lib/Makefile.msvc b/gettext-runtime/lib/Makefile.msvc index 421e41f..01dcb3b 100644 --- a/gettext-runtime/lib/Makefile.msvc +++ b/gettext-runtime/lib/Makefile.msvc @@ -52,13 +52,16 @@ RM = -del SHELL = /bin/sh -OBJECTS = basename.obj error.obj getopt.obj getopt1.obj progname.obj progreloc.obj relocatable.obj xmalloc.obj xstrdup.obj +OBJECTS = basename.obj closeout.obj error.obj getopt.obj getopt1.obj progname.obj progreloc.obj relocatable.obj xmalloc.obj xstrdup.obj all : grt.lib basename.obj : ..\..\gettext-tools\lib\basename.c $(CC) $(INCLUDES) $(CFLAGS) -c ..\..\gettext-tools\lib\basename.c +closeout.obj : ..\..\gettext-tools\lib\closeout.c + $(CC) $(INCLUDES) $(CFLAGS) -c ..\..\gettext-tools\lib\closeout.c + error.obj : ..\..\gettext-tools\lib\error.c $(CC) $(INCLUDES) $(CFLAGS) -c ..\..\gettext-tools\lib\error.c |