diff options
author | Roland McGrath <roland@redhat.com> | 2008-01-22 01:56:41 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2008-01-22 01:56:41 +0000 |
commit | c58110d291bbd39e416d322076dc58bddf56bcf0 (patch) | |
tree | 3de66c784a7767ece3fa01b2ad0f6403e88ec0cb /libcpu | |
parent | c0d3c265f06daa943df2c990daab1ce059749d4b (diff) | |
download | elfutils-c58110d291bbd39e416d322076dc58bddf56bcf0.tar.gz |
explicit merge of 'f9dc98cac1b8ccd38e7420c43dfe7551e2923aaa'elfutils-0.132
and '90e87946af64cdaa0fc75d344ca35ee2729e655d'
Diffstat (limited to 'libcpu')
-rw-r--r-- | libcpu/ChangeLog | 2 | ||||
-rw-r--r-- | libcpu/Makefile.am | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libcpu/ChangeLog b/libcpu/ChangeLog index e4dd3a75..4b225af8 100644 --- a/libcpu/ChangeLog +++ b/libcpu/ChangeLog @@ -2,6 +2,8 @@ * i386_parse.y: Add sanity check for NMNES macro value. * Makefile.am (i386_parse.o): Fix target in dependency rule. + (i386_parse.h): New target with empty commands. + (i386_lex.o): Depend on it in place of i386_parse.c. 2008-01-21 Ulrich Drepper <drepper@redhat.com> diff --git a/libcpu/Makefile.am b/libcpu/Makefile.am index e48b37f4..51817c1e 100644 --- a/libcpu/Makefile.am +++ b/libcpu/Makefile.am @@ -71,9 +71,11 @@ libeu = ../lib/libeu.a i386_lex_CFLAGS = -Wno-unused-label -Wno-unused-function -Wno-sign-compare i386_parse.o: i386_parse.c i386.mnemonics i386_parse_CFLAGS = -DNMNES=$$(wc -l < i386.mnemonics) -i386_lex.o: i386_parse.c +i386_lex.o: i386_parse.h i386_gendis_LDADD = $(libeu) -lm $(libmudflap) +i386_parse.h: i386_parse.c ; + noinst_HEADERS = memory-access.h i386_parse.h i386_data.h EXTRA_DIST = defs/i386 |