]> git.lyx.org Git - lyx.git/blob - sigc++/Makefile.am
Mostly fixed the 'empty paragraph deletion kills the cursor' problem; and initialise...
[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 EXTRA_DIST = $(BUILT_SOURCES)
15
16 libsigc_la_SOURCES= $(BUILT_SOURCES) \
17    object.cc   scope.cc   marshal.cc   slot.cc\
18    basic_signal.cc adaptor.cc thread.cc
19
20 libsigc_la_LDFLAGS =  \
21                       -no-undefined
22
23 noinst_LTLIBRARIES = libsigc.la
24
25 noinst_HEADERS = \
26     marshal.h handle_system.h signal_system.h \
27      $(BUILT_SOURCES) type.h\
28     handle.h object.h scope.h adaptor.h thread.h
29
30
31 Makefile: $(BUILT_SOURCES)
32
33 %.h: $(M4_DIR)/%.h.m4 $(M4_DIR)/template.macros.m4        
34         $(M4) $(M4_INCLUDES) $(DEFINES) $<  > $(top_srcdir)/$@
35
36 all-local: $(noinst_LTLIBRARIES) 
37