File: Makefile.am

package info (click to toggle)
cutter-testing-framework 1.1.7-1.2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 18,556 kB
  • sloc: ansic: 79,864; xml: 38,680; sh: 10,266; makefile: 2,324; ruby: 845; cpp: 697
file content (58 lines) | stat: -rw-r--r-- 1,283 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
SUBDIRS =			\
	cuttest-echo

INCLUDES = 			\
	-I$(top_builddir)	\
	-I$(top_srcdir)		\
	-I$(top_srcdir)/cutter	\
	-I$(top_srcdir)/gcutter

AM_CFLAGS =				\
	-DCUT_RELATIVE_PATH="\"lib\""	\
	$(CUTTER_CFLAGS)
if HAVE_GTK
AM_CFLAGS += $(GTK_CFLAGS)
endif

EXTRA_DIST = cuttest-assertions.h

check_LTLIBRARIES = 			\
	libcuttest-utils.la		\
	libcuttest-event-receiver.la

LIBS =						\
	$(top_builddir)/cutter/libcutter.la	\
	$(GLIB_LIBS)

AM_LDFLAGS =                    \
        -rpath `pwd`/.libs      \
        -avoid-version          \
        -no-undefined

libcuttest_utils_public_headers =		\
	cuttest-utils.h				\
	cuttest-assertions.h			\
	cuttest-enum.h

libcuttest_utils_la_SOURCES =			\
	$(libcuttest_utils_public_headers)	\
	cuttest-utils.c				\
	cuttest-assertions.c			\
	cuttest-enum.c

libcuttest_event_receiver_public_headers =	\
	cuttest-event-receiver.h

libcuttest_event_receiver_la_SOURCES = 			\
	$(libcuttest_event_receiver_public_headers)	\
	cuttest-event-receiver.c

echo-cuttest-utils-public-headers:
	@for header in $(libcuttest_utils_public_headers); do		\
	  echo $(abs_srcdir)/$${header};				\
	done

echo-cuttest-event-receiver-public-headers:
	@for header in $(libcuttest_event_receiver_public_headers); do	\
	  echo $(abs_srcdir)/$${header};				\
	done