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

Makefile.am « fontutils - github.com/neutrinolabs/xrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9e65ab4f6b8aecae0d2b2d031d6d8f556d226e4 (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
25
26
27
28
29
30
31
32
33
34
EXTRA_DIST = windows

# Some programs need freetype2 to build
if USE_FREETYPE2
  MKFV1 = xrdp-mkfv1
else
  MKFV1 =
endif

AM_CPPFLAGS =  \
  -I$(top_builddir) \
  -I$(top_srcdir)/common \
  $(FREETYPE2_CFLAGS)

bin_PROGRAMS = \
  $(MKFV1) \
  xrdp-dumpfv1

xrdp_mkfv1_SOURCES = \
  mkfv1.c \
  fv1.c \
  fv1.h

xrdp_mkfv1_LDADD = \
  $(top_builddir)/common/libcommon.la \
  $(FREETYPE2_LIBS)

xrdp_dumpfv1_SOURCES = \
  dumpfv1.c \
  fv1.c \
  fv1.h

xrdp_dumpfv1_LDADD = \
  $(top_builddir)/common/libcommon.la