File: Makefile.am

package info (click to toggle)
paps 0.6.8-6
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,192 kB
  • sloc: sh: 9,020; ansic: 1,681; makefile: 77
file content (26 lines) | stat: -rw-r--r-- 690 bytes parent folder | download | duplicates (4)
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
man_MANS = paps.1
lib_LTLIBRARIES = libpaps.la
libpaps_la_SOURCES = libpaps.c
libpaps_la_LIBADD = -lfreetype -lglib-2.0 $(PANGO_LIBS)
libpapsinc_HEADERS = libpaps.h
libpapsincdir = $(includedir)

bin_PROGRAMS = paps
paps_CFLAGS  = -Wall 
paps_SOURCES = paps.c
paps_LDADD = $(lib_LTLIBRARIES) $(all_libraries) $(PANGO_LIBS)
paps_DEPENDENCIES = $(lib_LTLIBRARIES)

EXTRA_DIST = test_libpaps.c paps.1

# set the include path found by configure
INCLUDES= $(all_includes) $(PANGO_CFLAGS)

# Test program
noinst_PROGRAMS = test_libpaps


test_libpaps_SOURCES = test_libpaps.c
test_libpaps_LDADD = $(lib_LTLIBRARIES) $(all_libraries) $(PANGO_LIBS)
test_libpaps_DEPENDENCIES = $(lib_LTLIBRARIES)