blob: 8091214834a57dddb4d9f81ef0a19531476fb049 (
plain) (
blame)
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
|
noinst_PROGRAMS = \
testephysearchentry \
testephyiconentry
INCLUDES = \
-I$(top_builddir)/lib/widgets
CFLAGS = \
$(DEPENDENCIES_CFLAGS) \
$(AM_CFLAGS)
LDADD = \
$(DEPENDENCIES_LIBS)
testephysearchentry_SOURCES = \
testephysearchentry.c
testephysearchentry_LDADD = \
$(top_builddir)/lib/widgets/libephywidgets.la \
$(DEPENDENCIES_LIBS)
testephyiconentry_SOURCES = \
testephyiconentry.c
testephyiconentry_LDADD = \
$(top_builddir)/lib/widgets/libephywidgets.la \
$(DEPENDENCIES_LIBS)
|