diff options
author | Björn Gustavsson <[email protected]> | 2010-09-23 16:38:39 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-10-01 11:59:25 +0200 |
commit | f21f0fa7d7ab6d5db573f06191a93aed6477b01b (patch) | |
tree | 2d0bb4273dd75c12f2645d3b444f4fe0ce879bbc /erts/emulator | |
parent | fa5f3dffb5f93645bf6a4d2af2b78084395f0875 (diff) | |
download | otp-f21f0fa7d7ab6d5db573f06191a93aed6477b01b.tar.gz otp-f21f0fa7d7ab6d5db573f06191a93aed6477b01b.tar.bz2 otp-f21f0fa7d7ab6d5db573f06191a93aed6477b01b.zip |
emulator Makefile: Add missing dependency
Make sure that an update to erts/emulator/tools/make_tables will
force all generated files to be re-generated.
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/erts/emulator/Makefile.in b/erts/emulator/Makefile.in index 903abe6f5c..76d782b159 100644 --- a/erts/emulator/Makefile.in +++ b/erts/emulator/Makefile.in @@ -531,8 +531,9 @@ TABLES= $(TARGET)/erl_bif_table.c $(TARGET)/erl_bif_table.h \ $(TARGET)/erl_atom_table.c $(TARGET)/erl_atom_table.h \ $(TARGET)/erl_pbifs.c -$(TABLES): $(ATOMS) $(BIFS) - LANG=C $(PERL) utils/make_tables -src $(TARGET) -include $(TARGET) $^ +$(TABLES): $(ATOMS) $(BIFS) utils/make_tables + LANG=C $(PERL) utils/make_tables -src $(TARGET) -include $(TARGET)\ + $(ATOMS) $(BIFS) $(TTF_DIR)/erl_alloc_types.h: beam/erl_alloc.types utils/make_alloc_types LANG=C $(PERL) utils/make_alloc_types -src $< -dst $@ $(ENABLE_ALLOC_TYPE_VARS) |