Home | History | Annotate | Line # | Download | only in hello-c-gnome
      1  1.1  christos # Example for use of GNU gettext.
      2  1.1  christos # Copyright (C) 2003, 2006 Free Software Foundation, Inc.
      3  1.1  christos # This file is in the public domain.
      4  1.1  christos #
      5  1.1  christos # Makefile configuration - processed by automake.
      6  1.1  christos 
      7  1.1  christos # General automake options.
      8  1.1  christos AUTOMAKE_OPTIONS = foreign no-dependencies
      9  1.1  christos ACLOCAL_AMFLAGS = -I m4
     10  1.1  christos 
     11  1.1  christos # The list of subdirectories containing Makefiles.
     12  1.1  christos SUBDIRS = m4 po
     13  1.1  christos 
     14  1.1  christos # The list of programs that are built.
     15  1.1  christos bin_PROGRAMS = hello
     16  1.1  christos 
     17  1.1  christos # The source files of the 'hello' program.
     18  1.1  christos hello_SOURCES = hello.c
     19  1.1  christos 
     20  1.1  christos # Define a C macro LOCALEDIR indicating where catalogs will be installed.
     21  1.1  christos DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
     22  1.1  christos 
     23  1.1  christos # Make sure the gnome.h include file is found.
     24  1.1  christos AM_CPPFLAGS = $(GNOME_INCLUDEDIR)
     25  1.1  christos 
     26  1.1  christos # Link time dependencies.
     27  1.1  christos LDADD = $(GNOME_LIBDIR) $(GNOMEUI_LIBS) @LIBINTL@
     28  1.1  christos 
     29  1.1  christos # Additional files to be distributed.
     30  1.1  christos EXTRA_DIST = autogen.sh autoclean.sh
     31