aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt1
-rw-r--r--Makefile.in5
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index de76a0c..1db8c7d 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -2,6 +2,7 @@
* (mhatle) change the journal from PERSIST to OFF
* (seebs) update docs now that fakeroot and password support are in,
this being long overdue
+ * (seebs) fix parallel build issue introduced with maketables
2010-12-15:
* (mhatle) add sqlite call profiling, enable with NPROFILE
diff --git a/Makefile.in b/Makefile.in
index a0609a2..6982d30 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -44,6 +44,9 @@ CFLAGS_PSEUDO=$(CFLAGS_BASE) $(CFLAGS_CODE) $(CFLAGS_DEFS) \
GLOB_PATTERN=guts/*.c
GUTS=$(filter-out "$(GLOB_PATTERN)",$(wildcard $(GLOB_PATTERN)))
+SOURCES=$(wildcard *.c)
+OBJS=$(subst .c,.o,$(SOURCES))
+
DBLDFLAGS=-lsqlite3
USE_64=wrapfuncs64.in
@@ -110,6 +113,8 @@ $(LIBPSEUDO): $(LIB) $(WRAPOBJS) pseudo_client.o pseudo_ipc.o $(SHOBJS)
%.o: %.c
$(CC) -c $(CPPFLAGS) $(CFLAGS) $(CFLAGS_PSEUDO) $<
+$(OBJS): pseudo_tables.h
+
pseudo_client.o pseudo_server.o pseudo_ipc.o: pseudo_ipc.h
pseudo_client.o: pseudo_client.h