diff options
author | Karl Ramm <kcr@1ts.org> | 2010-11-06 23:01:10 +0000 |
---|---|---|
committer | Karl Ramm <kcr@1ts.org> | 2010-11-06 23:01:10 +0000 |
commit | f58432b82d7d143f5357735b63499f513f1f360e (patch) | |
tree | a9c045de870d43140b5134a79c4b3d50cb17c4ba | |
parent | 883aaf7e0716b052410a0526c14a7b086c9959f1 (diff) |
Restate error table dependencies such that make -j doesn't trip over itself
(thanks to wthrowe@mit.edu)
-rw-r--r-- | lib/Makefile.in | 3 | ||||
-rw-r--r-- | server/Makefile.in | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index 1b50001..dfd6500 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -51,7 +51,8 @@ libzephyr.la: ${OBJS} ${LIBTOOL} --mode=link ${CC} -rpath ${libdir} -version-info 4:0:0 \ ${LDFLAGS} -o $@ ${OBJS} ${LIBS} -zephyr_err.c ${BUILDTOP}/h/zephyr/zephyr_err.h: zephyr_err.et +${BUILDTOP}/h/zephyr/zephyr_err.h: zephyr_err.c +zephyr_err.c: zephyr_err.et compile_et ${srcdir}/zephyr_err.et cp -f zephyr_err.h ${BUILDTOP}/h/zephyr diff --git a/server/Makefile.in b/server/Makefile.in index 58b8f78..5bd893a 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -39,7 +39,8 @@ all: zephyrd zephyrd: ${OBJS} ${LIBZEPHYR} ${LIBTOOL} --mode=link ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS} ${HESIOD_LIBS} -zsrv_err.c zsrv_err.h: zsrv_err.et +zsrv_err.h: zsrv_err.c +zsrv_err.c: zsrv_err.et compile_et ${srcdir}/zsrv_err.et version.o: version.h |