File: Makefile.am

package info (click to toggle)
gtkextramm 0.9.2-9
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,816 kB
  • ctags: 1,967
  • sloc: sh: 8,226; cpp: 3,645; perl: 1,077; makefile: 221; ansic: 8
file content (30 lines) | stat: -rw-r--r-- 1,125 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
## top directory

#Build in these directories:
SUBDIRS= $(GENERIC_LIBRARY_NAME) docgen docs
#examples not included in main build - type make inside the directory.

EXTRA_DIST = \
	$(GENERIC_LIBRARY_NAME).m4

# Install the m4 macro to be used by autoconf
m4datadir = $(datadir)/aclocal
m4data_DATA = $(GENERIC_LIBRARY_NAME).m4

#Distribute these directories:
DIST_SUBDIRS = $(GENERIC_LIBRARY_NAME)  macros scripts examples docgen docs

# gtkextra--: The source code of the library.
# macros: Some .m4 files used by autoconf
# scripts: Libtool-related scripts.
# examples: Source code that demonstrates how to use the library. There should
# also be an external standalone project that demonstrates how to link to the 
# library in a real project. 
# docgen: Perceps code copied from Gtk--, used to build documentation.
# docs: Documentation - reference is built by the code in docgen.

bin_SCRIPTS = @GENERIC_NAME@-config
# This is a shell script which will be installed.
# Projects will use this script to locate the library:
# Built from GENERIC_LIBRARY_NAME-config.in by inserting the GENERIC variables 
# where necessary.