Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « tests - github.com/neutrinolabs/libpainter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5bc1685137890d2c9fc2a0fbfd2704efacea64b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
EXTRA_DIST =

EXTRA_INCLUDES =
EXTRA_LIBS =
EXTRA_FLAGS =

if GOT_PREFIX
EXTRA_INCLUDES += -I$(prefix)/include
EXTRA_FLAGS += -L$(prefix)/lib -Wl,-rpath -Wl,$(prefix)/lib
endif

AM_CPPFLAGS = \
  -I$(top_srcdir)/include \
  $(EXTRA_INCLUDES)

bin_PROGRAMS = paintertest

paintertest_SOURCES = paintertest.c

paintertest_LDADD = \
  $(top_builddir)/src/libpainter.la $(EXTRA_LIBS)

paintertest_LDFLAGS = $(EXTRA_FLAGS)