File: Makefile.am

package info (click to toggle)
xmhtml 1.1.7-18
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,576 kB
  • sloc: ansic: 68,174; makefile: 438; sh: 158; perl: 36
file content (40 lines) | stat: -rw-r--r-- 788 bytes parent folder | download | duplicates (10)
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
#
# $Header: $
#
RM = rm -f

#SUBDIRS=

lib_LTLIBRARIES=libXmHTML.la

libXmHTML_la_LDFLAGS=
libXmHTML_la_SOURCES= \
	XmHTML.c Balloon.c XmImage.c fonts.c callbacks.c events.c frames.c \
	forms.c StringUtil.c parse.c format.c layout.c paint.c colors.c \
	images.c readBitmap.c readFLG.c readGIF.c readGIFplc.c readXPM.c \
	readJPEG.c readJPEGplc.c readPNG.c map.c XCC.c quantize.c \
	LZWStream.c plc.c error.c strings.c textsel.c output.c motif.c \
	public.c warnings.c private.c stack.c

if NLIBJPEG
JPEGINC =
else
JPEGINC = -I@jpeg_includes@
endif

if NLIBPNG
PNGINC =
else
PNGINC = -I@png_includes@
endif

if NLIBZ
ZLIBINC =
else
ZLIBINC = -I@zlib_includes@
endif

IMAGEINC= $(JPEGINC) $(PNGINC) $(ZLIBINC)

INCLUDES= -I$(top_srcdir)/include ${X_CFLAGS} -I@motif_includes@ $(IMAGEINC)