try to fix the make race for real

b365be2d was not correct in that I put
vcc_compile.h in the wrong place, it should have been added to GEN_H,
not as a dependency for GEN_H

I also realized that we should wait for the last file generate.py
generates.
parent 54c0bb85
......@@ -50,11 +50,15 @@ vcc_obj.c: \
@PYTHON@ $(top_srcdir)/lib/libvcc/generate.py \
$(top_srcdir) $(top_builddir)
## this list is not complete, but it contains important files
## used as includes and the last file built by generate.py
GEN_H = \
vcc_fixed_token.c \
vcc_token_defs.h
vcc_token_defs.h \
vcc_compile.h \
tbl/vrt_stv_var.h
$(GEN_H): vcc_obj.c vcc_compile.h
$(GEN_H): vcc_obj.c
GENERATED_H = vcc_obj.c $(GEN_H)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment