diff options
Diffstat (limited to 'translate/grt/Makefile.inc')
-rw-r--r-- | translate/grt/Makefile.inc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/translate/grt/Makefile.inc b/translate/grt/Makefile.inc index ec0d4d0..002d177 100644 --- a/translate/grt/Makefile.inc +++ b/translate/grt/Makefile.inc @@ -72,9 +72,10 @@ endif ifeq ($(filter-out i%86 mingw32,$(arch) $(osys)),) GRT_TARGET_OBJS=win32.o clock.o endif -ifeq ($(filter-out i%86 cygwin,$(arch) $(osys)),) - GRT_TARGET_OBJS=win32.o clock.o -endif +# Doesn't work for unknown reasons. +#ifeq ($(filter-out i%86 cygwin,$(arch) $(osys)),) +# GRT_TARGET_OBJS=win32.o clock.o +#endif # Fall-back: use a generic implementation based on pthreads. ifndef GRT_TARGET_OBJS GRT_TARGET_OBJS=pthread.o times.o @@ -142,6 +143,9 @@ linux.o: $(GRTSRCDIR)/config/linux.c win32.o: $(GRTSRCDIR)/config/win32.c $(CC) -c $(GRT_FLAGS) -o $@ $< +win32thr.o: $(GRTSRCDIR)/config/win32thr.c + $(CC) -c $(GRT_FLAGS) -o $@ $< + pthread.o: $(GRTSRCDIR)/config/pthread.c $(CC) -c $(GRT_FLAGS) -o $@ $< |