libcc1: Fix tags generation target
'make tags' currently fails for libcc1 with this: *** No rule to make target `marshall-c.hh', needed by `tags-am'. Stop. The problem is that while marshall-c.hh has been removed via r12-454-g25d1a6ecdc443f, it's still part of the libcc1_la_SOURCES variable, hence the 'tags' target has a dependency on it. This patch simply removes the marshall_c_source variable, that should be empty. libcc1/ChangeLog: * Makefile.am: Remove reference to deleted marshall-c.h. * Makefile.in: Regenerate.
This commit is contained in:
parent
d21efb65d1
commit
6c59463a6f
2 changed files with 6 additions and 8 deletions
|
@ -51,12 +51,11 @@ endif
|
|||
shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \
|
||||
marshall.cc marshall.hh rpc.hh status.hh
|
||||
|
||||
marshall_c_source = marshall-c.hh
|
||||
marshall_cxx_source = marshall-cp.hh
|
||||
|
||||
libcc1plugin_la_LDFLAGS = -module -export-symbols $(srcdir)/libcc1plugin.sym
|
||||
libcc1plugin_la_SOURCES = libcc1plugin.cc context.cc context.hh \
|
||||
$(shared_source) $(marshall_c_source)
|
||||
$(shared_source)
|
||||
libcc1plugin.lo_CPPFLAGS = $(CPPFLAGS_FOR_C)
|
||||
libcc1plugin_la_LIBADD = $(libiberty)
|
||||
libcc1plugin_la_DEPENDENCIES = $(libiberty_dep)
|
||||
|
@ -78,7 +77,7 @@ LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
|
|||
libcc1_la_LDFLAGS = -module -export-symbols $(srcdir)/libcc1.sym
|
||||
libcc1_la_SOURCES = findcomp.cc libcc1.cc libcp1.cc \
|
||||
compiler.cc compiler.hh names.cc names.hh $(shared_source) \
|
||||
$(marshall_c_source) $(marshall_cxx_source)
|
||||
$(marshall_cxx_source)
|
||||
libcc1_la_LIBADD = $(libiberty)
|
||||
libcc1_la_DEPENDENCIES = $(libiberty_dep)
|
||||
libcc1_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
|
||||
|
|
|
@ -145,11 +145,11 @@ LTLIBRARIES = $(cc1lib_LTLIBRARIES) $(plugin_LTLIBRARIES)
|
|||
am__objects_1 = callbacks.lo connection.lo marshall.lo
|
||||
am__objects_2 =
|
||||
am_libcc1_la_OBJECTS = findcomp.lo libcc1.lo libcp1.lo compiler.lo \
|
||||
names.lo $(am__objects_1) $(am__objects_2) $(am__objects_2)
|
||||
names.lo $(am__objects_1) $(am__objects_2)
|
||||
libcc1_la_OBJECTS = $(am_libcc1_la_OBJECTS)
|
||||
@ENABLE_PLUGIN_TRUE@am_libcc1_la_rpath = -rpath $(cc1libdir)
|
||||
am_libcc1plugin_la_OBJECTS = libcc1plugin.lo context.lo \
|
||||
$(am__objects_1) $(am__objects_2)
|
||||
$(am__objects_1)
|
||||
libcc1plugin_la_OBJECTS = $(am_libcc1plugin_la_OBJECTS)
|
||||
@ENABLE_PLUGIN_TRUE@am_libcc1plugin_la_rpath = -rpath $(plugindir)
|
||||
am_libcp1plugin_la_OBJECTS = libcp1plugin.lo context.lo \
|
||||
|
@ -403,11 +403,10 @@ cc1libdir = $(libdir)/$(libsuffix)
|
|||
shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \
|
||||
marshall.cc marshall.hh rpc.hh status.hh
|
||||
|
||||
marshall_c_source = marshall-c.hh
|
||||
marshall_cxx_source = marshall-cp.hh
|
||||
libcc1plugin_la_LDFLAGS = -module -export-symbols $(srcdir)/libcc1plugin.sym
|
||||
libcc1plugin_la_SOURCES = libcc1plugin.cc context.cc context.hh \
|
||||
$(shared_source) $(marshall_c_source)
|
||||
$(shared_source)
|
||||
|
||||
libcc1plugin.lo_CPPFLAGS = $(CPPFLAGS_FOR_C)
|
||||
libcc1plugin_la_LIBADD = $(libiberty)
|
||||
|
@ -431,7 +430,7 @@ LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
|
|||
libcc1_la_LDFLAGS = -module -export-symbols $(srcdir)/libcc1.sym
|
||||
libcc1_la_SOURCES = findcomp.cc libcc1.cc libcp1.cc \
|
||||
compiler.cc compiler.hh names.cc names.hh $(shared_source) \
|
||||
$(marshall_c_source) $(marshall_cxx_source)
|
||||
$(marshall_cxx_source)
|
||||
|
||||
libcc1_la_LIBADD = $(libiberty)
|
||||
libcc1_la_DEPENDENCIES = $(libiberty_dep)
|
||||
|
|
Loading…
Add table
Reference in a new issue