Gimp/libgimpproxy/Makefile.am
Sven Neumann 3aae39405e app/base/Makefile.am automake-1.6 seems to use yet another variable to
2002-06-08  Sven Neumann  <sven@gimp.org>

	* app/base/Makefile.am
	* app/paint-funcs/Makefile.am: automake-1.6 seems to use yet another
	variable to pass flags to the assembler (bug #84514). Define
	AM_CCASFLAGS like AM_ASFLAGS to satisfy all versions of automake.

	* configure.in
	* all Makefiles: removed STRIP_BEGIN and STRIP_END since it's a
	GNU make extension that we don't really need and newer versions of
	automake don't seem to like it.
2002-06-07 23:00:46 +00:00

76 lines
2.2 KiB
Makefile

## Process this file with automake to produce Makefile.in
libgimpproxyincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpproxy
AM_CPPFLAGS = \
-DG_LOG_DOMAIN=\"LibGimpProxy\" \
@GIMP_THREAD_FLAGS@
INCLUDES = \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(includedir) \
-I$(top_srcdir)/app \
-I$(top_srcdir)/app/core
lib_LTLIBRARIES = libgimpproxy-1.3.la
libgimpproxy_1_3_la_SOURCES = \
gimpproxytypes.h \
gimpobject.h \
gimpobject.c \
gimpchannel.h
libgimpproxyinclude_HEADERS = \
gimpproxytypes.h \
gimpobject.h \
gimpchannel.h
libgimpproxy_1_3_la_LDFLAGS = \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
libgimpproxy_1_3_la_LIBADD = $(GLIB_LIBS)
#
# rules to generate built sources
#
# setup autogeneration dependancies
gen_sources = xgen-goh xgen-goc xgen-gch xgen-gph
CLEANFILES = $(gen_sources)
$(srcdir)/gimpobject.h: $(srcdir)/../app/core/gimpobject.h $(GIMP_MKPROXY)
$(GIMP_MKPROXY) \
--fprod "\n/* autogenerated from \"@filename@\" */" \
$(srcdir)/../app/core/gimpobject.h > xgen-goh \
&& cp xgen-goh $(@F) \
&& rm -f xgen-goh
$(srcdir)/gimpobject.c: $(srcdir)/../app/core/gimpobject.c $(GIMP_MKPROXY)
$(GIMP_MKPROXY) \
--fprod "\n/* autogenerated from \"@filename@\" */" \
$(srcdir)/../app/core/gimpobject.c > xgen-goc \
&& cp xgen-goc $(@F) \
&& rm -f xgen-goc
$(srcdir)/gimpchannel.h: $(srcdir)/../app/core/gimpchannel.h $(GIMP_MKPROXY)
$(GIMP_MKPROXY) \
--fprod "\n/* autogenerated from \"@filename@\" */" \
$(srcdir)/../app/core/gimpchannel.h > xgen-gch \
&& cp xgen-gch $(@F) \
&& rm -f xgen-gch
$(srcdir)/gimpproxytypes.h: $(srcdir)/../app/core/core-types.h $(srcdir)/../app/core/core-enums.h $(srcdir)/../app/widgets/widgets-enums.h $(srcdir)/../app/display/display-types.h $(GIMP_MKPROXY)
$(GIMP_MKPROXY) \
--fprod "\n/* autogenerated from \"@filename@\" */" \
--fhead "#ifndef __GIMP_PROXY_TYPES_H__\n#define __GIMP_PROXY_TYPES_H__\n" \
--ftail "\n#endif /* __GIMP_PROXY_TYPES_H__ */\n" \
$(srcdir)/../app/core/core-enums.h \
$(srcdir)/../app/core/core-types.h \
$(srcdir)/../app/widgets/widgets-enums.h \
$(srcdir)/../app/display/display-types.h \
> xgen-gph \
&& cp xgen-gph $(@F) \
&& rm -f xgen-gph