]> git.lyx.org Git - lyx.git/blob - sigc++/Makefile.am
do not include language.h and gettext.h in lyxfont.h and lyxparagraph.h
[lyx.git] / sigc++ / Makefile.am
1 SUBDIRS =  macros
2 DISTCLEANFILES= *.orig *.rej *~ *.bak core 
3 MAINTAINERCLEANFILES= $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/sigc++config* $(srcdir)/stamp* $(srcdir)/aclocal.m4 $(srcdir)/acinclude.m4 
4 ETAGS_ARGS = --lang=c++
5
6 INCLUDES = -I$(top_srcdir)/.. -I$(top_builddir)/..
7 M4_DIR = $(top_srcdir)/macros
8 M4_INCLUDES = -I$(M4_DIR)
9
10 BUILT_SOURCES = slot.h object_slot.h func_slot.h class_slot.h \
11                 basic_signal.h \
12                 convert.h bind.h rettype.h retbind.h
13
14 libsigc_la_SOURCES= $(BUILT_SOURCES) \
15    object.cc   scope.cc   marshal.cc   slot.cc\
16    basic_signal.cc adaptor.cc thread.cc
17
18 libsigc_la_LDFLAGS =  \
19                       -no-undefined
20
21 noinst_LTLIBRARIES = libsigc.la
22
23 noinst_HEADERS = \
24     marshal.h handle_system.h signal_system.h \
25      $(BUILT_SOURCES) type.h\
26     handle.h object.h scope.h adaptor.h thread.h
27
28
29 Makefile: $(BUILT_SOURCES)
30
31 %.h: $(M4_DIR)/%.h.m4 $(M4_DIR)/template.macros.m4        
32         $(M4) $(M4_INCLUDES) $(DEFINES) $<  > $@
33
34 all-local: $(noinst_LTLIBRARIES) 
35