mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
remove empty sigc++2 directory
git-svn-id: svn://localhost/ardour2/branches/3.0@3432 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
2f3f697bb8
commit
9c0d7d72d7
2797 changed files with 0 additions and 992363 deletions
|
|
@ -1,71 +0,0 @@
|
|||
## Copyright (c) 2001
|
||||
## The gtkmm development team.
|
||||
##
|
||||
## **** Common rules for inclusion in Makefile.am ****
|
||||
##
|
||||
##
|
||||
## Used variable: Example content:
|
||||
##
|
||||
## sublib_name = glibmm
|
||||
## sublib_cflags = $(GLIBMM_CFLAGS)
|
||||
## files_built_*_cc =
|
||||
## files_built_*_h = proxy.h
|
||||
## files_extra_cc = array.cc class.cc closure.cc
|
||||
## files_extra_h = array.h boxedtype.h class.h
|
||||
## files_extra_all_cc = array.cc class.cc closure.cc
|
||||
## files_extra_all_h = array.h boxedtype.h class.h
|
||||
##
|
||||
## Returned variable: Usage example:
|
||||
##
|
||||
## files_all_*_cc libglibmm_la_SOURCES = $(files_all_*_cc)
|
||||
## common_ldflags libglibmm_la_LDFLAGS = $(common_ldflags)
|
||||
|
||||
files_all_general_cc = $(files_built_general_cc) $(files_extra_cc)
|
||||
files_all_posix_cc = $(files_built_posix_cc)
|
||||
files_all_win32_cc = $(files_built_win32_cc)
|
||||
|
||||
# Support for DLL on mingw using libtool > 1.4
|
||||
# When creating DLLs on win32, we need to explicitly add a few extra
|
||||
# libraries at link time to resolve symbols (remember a dll is like an
|
||||
# executable).
|
||||
if PLATFORM_WIN32
|
||||
extra_win32_defines = \
|
||||
-D$(shell echo $(sublib_name) | tr [:lower:] [:upper:])_BUILD
|
||||
no_undefined = -no-undefined -Wl,--export-all-symbols
|
||||
win32_dlls_extra_libs = $(sublib_win32_dlls_libs)
|
||||
else
|
||||
extra_win32_defines =
|
||||
no_undefined =
|
||||
win32_dlls_extra_libs =
|
||||
endif
|
||||
|
||||
common_ldflags = -version-info $(LIBGLIBMM_SO_VERSION) $(no_undefined)
|
||||
|
||||
all_includes = -I$(top_builddir)/glib -I$(top_srcdir)/glib \
|
||||
$(sublib_cflags) $(GTHREAD_CFLAGS)
|
||||
|
||||
extra_defines = -DG_LOG_DOMAIN=\"$(sublib_name)\" $(extra_win32_defines) \
|
||||
$(DISABLE_DEPRECATED_CFLAGS) $(DISABLE_DEPRECATED_API_CFLAGS)
|
||||
|
||||
dist_sources = $(files_built_all_cc) $(files_extra_all_cc) \
|
||||
$(files_built_all_h) $(files_extra_all_h)
|
||||
DISTFILES = $(DIST_COMMON) $(dist_sources) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
DEFS = @DEFS@ $(strip $(extra_defines))
|
||||
DEFAULT_INCLUDES =
|
||||
INCLUDES = $(strip $(all_includes))
|
||||
|
||||
sublib_includedir = $(includedir)/$(sublib_libname)/$(sublib_name)
|
||||
if OS_WIN32
|
||||
sublib_include_HEADERS = $(files_built_general_h) \
|
||||
$(files_built_win32_h) \
|
||||
$(files_extra_h)
|
||||
else
|
||||
sublib_include_HEADERS = $(files_built_general_h) \
|
||||
$(files_built_posix_h) \
|
||||
$(files_extra_h)
|
||||
endif
|
||||
|
||||
maintainer-clean-local:
|
||||
(cd $(srcdir) && rm -f $(files_built_all_cc) $(files_built_all_h))
|
||||
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
## Copyright (c) 2001
|
||||
## The gtkmm development team.
|
||||
##
|
||||
## **** Common rules for inclusion in Makefile.am ****
|
||||
##
|
||||
##
|
||||
## Used variable: Example content:
|
||||
##
|
||||
## sublib_name = gtkmm
|
||||
## sublib_cflags = $(GTKMM_CFLAGS)
|
||||
## sublib_files_extra_*_cc = stock_id.cc
|
||||
## sublib_files_extra_*_h = stock_id.h
|
||||
##
|
||||
## Returned variable: Usage example:
|
||||
##
|
||||
## files_extra_cc libgtkmm_la_SOURCES = $(files_all_cc)
|
||||
## files_extra_h libgtkmm_la_SOURCES = $(files_all_general_cc)
|
||||
## files_extra_all_cc libgtkmm_la_SOURCES = $(files_all_posix_cc)
|
||||
## files_extra_all_h libgtkmm_la_SOURCES = $(files_all_win32_cc)
|
||||
|
||||
## The temporary sublib_ variables are needed to workaround
|
||||
## a nasty automake problem with escaped newlines and +=.
|
||||
|
||||
if OS_WIN32
|
||||
files_extra_cc_tmp = $(sublib_files_extra_general_cc) $(sublib_files_extra_win32_cc)
|
||||
files_extra_h_tmp = $(sublib_files_extra_general_h) $(sublib_files_extra_win32_h)
|
||||
else
|
||||
files_extra_cc_tmp = $(sublib_files_extra_general_cc) $(sublib_files_extra_posix_cc)
|
||||
files_extra_h_tmp = $(sublib_files_extra_general_h) $(sublib_files_extra_posix_h)
|
||||
endif
|
||||
|
||||
files_extra_cc = $(files_extra_cc_tmp)
|
||||
files_extra_h = $(files_extra_h_tmp)
|
||||
|
||||
files_extra_all_cc = $(sublib_files_extra_general_cc) $(sublib_files_extra_posix_cc) $(sublib_files_extra_win32_cc)
|
||||
files_extra_all_h = $(sublib_files_extra_general_h) $(sublib_files_extra_posix_h) $(sublib_files_extra_win32_h)
|
||||
|
||||
files_extra_h += wrap_init.h
|
||||
files_extra_all_h += wrap_init.h
|
||||
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
## Copyright (c) 2001
|
||||
## The gtkmm development team.
|
||||
##
|
||||
## **** Common rules for inclusion in Makefile.am ****
|
||||
##
|
||||
##
|
||||
## Used variable: Example content:
|
||||
##
|
||||
## sublib_name = gtkmm
|
||||
## sublib_cflags = $(GTKMM_CFLAGS)
|
||||
## files_extra_cc = stock_id.cc
|
||||
## files_extra_h = base.h stock_id.h
|
||||
##
|
||||
## Returned variable: Usage example:
|
||||
##
|
||||
## files_all_general_cc libgtkmm_la_SOURCES = $(files_all_general_cc)
|
||||
## files_all_posix_cc libgtkmm_la_SOURCES = $(files_all_posix_cc)
|
||||
## files_all_win32_cc libgtkmm_la_SOURCES = $(files_all_win32_cc)
|
||||
## common_ldflags libgtkmm_la_LDFLAGS = $(common_ldflags)
|
||||
|
||||
include $(srcdir)/../src/Makefile_list_of_hg.am_fragment
|
||||
include $(top_srcdir)/build_shared/Makefile_gensrc_platform.am_fragment
|
||||
|
||||
files_built_general_cc = $(files_general_hg:.hg=.cc) wrap_init.cc
|
||||
files_built_general_h = $(files_general_hg:.hg=.h)
|
||||
files_built_posix_cc = $(files_posix_hg:.hg=.cc)
|
||||
files_built_posix_h = $(files_posix_hg:.hg=.h)
|
||||
files_built_win32_cc = $(files_win32_hg:.hg=.cc)
|
||||
files_built_win32_h = $(files_win32_hg:.hg=.h)
|
||||
|
||||
files_built_all_cc = $(files_built_general_cc) \
|
||||
$(files_built_posix_cc) \
|
||||
$(files_built_win32_cc)
|
||||
files_built_all_h = $(files_built_general_h) \
|
||||
$(files_built_posix_h) \
|
||||
$(files_built_win32_h)
|
||||
|
||||
include $(top_srcdir)/build_shared/Makefile_build_extra.am_fragment
|
||||
include $(top_srcdir)/build_shared/Makefile_build.am_fragment
|
||||
|
||||
cvsignore:
|
||||
( \
|
||||
echo ".deps"; \
|
||||
echo ".libs"; \
|
||||
echo "*.la"; \
|
||||
echo "*.lo"; \
|
||||
echo "Makefile"; \
|
||||
echo "Makefile.in"; \
|
||||
echo; \
|
||||
list='$(strip $(files_built_all_cc) $(files_built_all_h))'; \
|
||||
for file in $$list; do \
|
||||
echo "$$file"; \
|
||||
done \
|
||||
) >$(srcdir)/.cvsignore
|
||||
( \
|
||||
echo "Makefile"; \
|
||||
echo "Makefile.in"; \
|
||||
echo; \
|
||||
list='$(strip $(files_all_hg:.hg=_p.h))'; \
|
||||
for file in $$list; do \
|
||||
echo "$$file"; \
|
||||
done \
|
||||
) >$(srcdir)/private/.cvsignore
|
||||
|
||||
.PHONY: cvsignore
|
||||
|
||||
|
|
@ -1,62 +0,0 @@
|
|||
## Copyright (c) 2001
|
||||
## The gtkmm development team.
|
||||
##
|
||||
## **** Common rules for inclusion in Makefile.am ****
|
||||
##
|
||||
##
|
||||
## Used variable: Example content:
|
||||
##
|
||||
## sublib_name = gdkmm
|
||||
## sublib_namespace = Gdk
|
||||
## files_defs = gdk.defs gdk_pixbuf.defs
|
||||
|
||||
|
||||
tools_dir_m4 = $(top_srcdir)/tools/m4
|
||||
tools_dir_pm = $(top_srcdir)/tools/pm
|
||||
|
||||
gensrc_destdir = $(srcdir)/../$(sublib_name)
|
||||
stamp_dir = $(srcdir)/.stamps
|
||||
|
||||
include $(top_srcdir)/tools/Makefile_list_of_sources.am_fragment
|
||||
tools_m4 = $(files_tools_m4:%.m4=$(tools_dir_m4)/%.m4)
|
||||
tools_pm = $(files_tools_pm:%.pm=$(tools_dir_pm)/%.pm)
|
||||
|
||||
include $(srcdir)/Makefile_list_of_hg.am_fragment
|
||||
include $(top_srcdir)/build_shared/Makefile_gensrc_platform.am_fragment
|
||||
files_all_ccg = $(files_all_hg:%.hg=%.ccg)
|
||||
files_h = $(files_all_hg:%.hg=$(gensrc_destdir)/%.h)
|
||||
files_cc = $(files_all_hg:%.hg=$(gensrc_destdir)/%.cc)
|
||||
files_stamp = $(files_all_hg:%.hg=$(stamp_dir)/stamp-%)
|
||||
|
||||
gmmproc_in = $(top_srcdir)/tools/gmmproc.in
|
||||
gmmproc_path = $(top_builddir)/tools/gmmproc
|
||||
gmmproc_args = -I $(tools_dir_m4) --defs $(srcdir)
|
||||
run_gmmproc = $(PERL_PATH) -I$(tools_dir_pm) $(gmmproc_path) $(gmmproc_args)
|
||||
|
||||
gen_wrap_init_in = $(top_srcdir)/tools/generate_wrap_init.pl.in
|
||||
gen_wrap_init_path = $(top_builddir)/tools/generate_wrap_init.pl
|
||||
gen_wrap_init_args = --namespace=$(sublib_namespace)
|
||||
run_gen_wrap_init = $(PERL_PATH) $(gen_wrap_init_path) $(gen_wrap_init_args)
|
||||
|
||||
EXTRA_DIST = Makefile_list_of_hg.am_fragment $(files_defs) $(files_all_hg) $(files_all_ccg)
|
||||
|
||||
|
||||
$(stamp_dir)/stamp-%: %.hg %.ccg $(gmmproc_in) $(tools_m4) $(tools_pm) $(files_defs)
|
||||
$(run_gmmproc) $(notdir $*) $(srcdir) $(gensrc_destdir)
|
||||
@echo 'timestamp' >$@
|
||||
|
||||
$(gensrc_destdir)/wrap_init.cc: $(gen_wrap_init_in) $(files_all_hg)
|
||||
$(run_gen_wrap_init) $(files_all_hg:%.hg=$(srcdir)/%.hg) >$@
|
||||
|
||||
create-stamp-dir:
|
||||
@(test -d $(stamp_dir) || mkdir $(stamp_dir))
|
||||
|
||||
if MAINTAINER_MODE
|
||||
all-local: create-stamp-dir $(files_stamp) $(gensrc_destdir)/wrap_init.cc
|
||||
endif
|
||||
|
||||
maintainer-clean-local:
|
||||
rm -rf $(stamp_dir)
|
||||
|
||||
.PHONY: create-stamp-dir
|
||||
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
## Copyright (c) 2001
|
||||
## The gtkmm development team.
|
||||
##
|
||||
## **** Common rules for inclusion in Makefile.am ****
|
||||
##
|
||||
##
|
||||
## Used variable: Example content:
|
||||
##
|
||||
## files_general_hg = button.hg
|
||||
## files_posix_hg = socket.hg
|
||||
##
|
||||
## Returned variable: Usage example:
|
||||
##
|
||||
## files_all_hg EXTRA_DIST = $(files_all_hg)
|
||||
## files_hg files_built_h = $(files_hg:.hg=_p.h)
|
||||
|
||||
|
||||
files_all_hg = $(files_general_hg) $(files_posix_hg) $(files_win32_hg)
|
||||
|
||||
if OS_WIN32
|
||||
files_hg = $(files_general_hg) $(files_win32_hg)
|
||||
else
|
||||
files_hg = $(files_general_hg) $(files_posix_hg)
|
||||
endif
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue