From 1abd5dce908b2e563f050d0eb28c7ae7bd7d1f05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Santos=20Costa?= Date: Mon, 21 Jan 2013 10:07:46 +0000 Subject: [PATCH] fix init order to have terms when setting up Prolog flags --- Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 85c29d3be..c28285ac4 100755 --- a/Makefile.in +++ b/Makefile.in @@ -223,6 +223,7 @@ IOLIB_SOURCES=$(srcdir)/os/pl-buffer.c $(srcdir)/os/pl-ctype.c \ $(srcdir)/os/pl-table.c \ $(srcdir)/os/pl-tai.c \ $(srcdir)/os/pl-text.c \ + $(srcdir)/os/pl-version.c \ $(srcdir)/os/pl-write.c \ $(srcdir)/C/pl-yap.c @ENABLE_WINCONSOLE@$(srcdir)/os/windows/uxnt.c @@ -349,7 +350,7 @@ IOLIB_OBJECTS=pl-buffer.o pl-codelist.o pl-ctype.o pl-dtoa.o pl-error.o \ pl-rl.o \ pl-stream.o pl-string.o pl-table.o \ pl-tai.o pl-text.o pl-utf8.o \ - pl-write.o \ + pl-version.o pl-write.o \ pl-yap.o @ENABLE_WINCONSOLE@ uxnt.o ENGINE_OBJECTS = \ @@ -648,6 +649,9 @@ pl-text.o: $(srcdir)/os/pl-text.c config.h pl-utf8.o: $(srcdir)/os/pl-utf8.c config.h $(CC) -c $(CFLAGS) -I$(srcdir)/include -I$(srcdir) -I$(srcdir)/os @EXTRA_INCLUDES_FOR_WIN32@ $(srcdir)/os/pl-utf8.c -o $@ +pl-version.o: $(srcdir)/os/pl-version.c config.h + $(CC) -c $(CFLAGS) -I$(srcdir)/include -I$(srcdir) -I$(srcdir)/os @EXTRA_INCLUDES_FOR_WIN32@ $(srcdir)/os/pl-version.c -o $@ + pl-write.o: $(srcdir)/os/pl-write.c config.h $(CC) -c $(CFLAGS) -I$(srcdir)/include -I$(srcdir) -I$(srcdir)/os @EXTRA_INCLUDES_FOR_WIN32@ $(srcdir)/os/pl-write.c -o $@