mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
34 lines
986 B
Makefile
34 lines
986 B
Makefile
|
SUBDIRS = macros
|
||
|
DISTCLEANFILES= *.orig *.rej *~ *.bak core
|
||
|
MAINTAINERCLEANFILES= $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/sigc++config* $(srcdir)/stamp* $(srcdir)/aclocal.m4 $(srcdir)/acinclude.m4
|
||
|
ETAGS_ARGS = --lang=c++
|
||
|
|
||
|
INCLUDES = -I$(top_srcdir)/.. -I$(top_builddir)/..
|
||
|
M4_DIR = $(top_srcdir)/macros
|
||
|
M4_INCLUDES = -I$(M4_DIR)
|
||
|
|
||
|
BUILT_SOURCES = slot.h object_slot.h func_slot.h class_slot.h \
|
||
|
basic_signal.h \
|
||
|
convert.h bind.h rettype.h retbind.h
|
||
|
|
||
|
libsigc_la_SOURCES= \
|
||
|
object.cc scope.cc marshal.cc slot.cc\
|
||
|
basic_signal.cc adaptor.cc thread.cc
|
||
|
|
||
|
libsigc_la_LDFLAGS = \
|
||
|
-no-undefined
|
||
|
|
||
|
noinst_LTLIBRARIES = libsigc.la
|
||
|
|
||
|
noinst_HEADERS = \
|
||
|
marshal.h handle_system.h signal_system.h \
|
||
|
$(BUILT_SOURCES) type.h\
|
||
|
handle.h object.h scope.h adaptor.h thread.h
|
||
|
|
||
|
|
||
|
%.h: $(M4_DIR)/%.h.m4 $(M4_DIR)/template.macros.m4
|
||
|
$(M4) $(M4_INCLUDES) $(DEFINES) $< > $@
|
||
|
|
||
|
all-local: $(noinst_LTLIBRARIES)
|
||
|
|