Add commonTranslationFunctions.c to windows/Makefile.nmake
diff --git a/windows/Makefile.nmake b/windows/Makefile.nmake
index 325059e..dfedc22 100755
--- a/windows/Makefile.nmake
+++ b/windows/Makefile.nmake
@@ -20,7 +20,7 @@
 HEADERS = $(SRCDIR)\louis.h include\liblouis.h include\config.h

 DLLFLAGS = /dll /nologo

 LIBFLAGS = /nologo

-OBJ = compileTranslationTable.obj lou_translateString.obj \

+OBJ = commonTranslationFunctions.obj compileTranslationTable.obj lou_translateString.obj \

     lou_backTranslateString.obj logging.obj wrappers.obj pattern.obj

 

 !if "$(UCS)" == "2"

@@ -38,6 +38,10 @@
 liblouis.lib: $(OBJ)

     lib $(LIBFLAGS) $(OBJ) /out:liblouis.lib

 

+commonTranslationFunctions.obj: $(SRCDIR)\commonTranslationFunctions.c \

+   $(HEADERS)

+   $(CC) $(CFLAGS) $(SRCDIR)\commonTranslationFunctions.c

+

 compileTranslationTable.obj: $(SRCDIR)\compileTranslationTable.c \

     $(HEADERS)

     $(CC) $(CFLAGS) $(SRCDIR)\compileTranslationTable.c