File: Makefile.am

package info (click to toggle)
liboil 0.3.15-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 7,032 kB
  • ctags: 5,929
  • sloc: ansic: 47,058; xml: 12,229; sh: 8,957; perl: 1,095; asm: 1,072; makefile: 748
file content (30 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (2)
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


noinst_LTLIBRARIES = libjpeg.la
noinst_PROGRAMS = jpeg_test jpeg_rgb_test

libjpeg_la_SOURCES = \
	jpeg.c \
	jpeg_bits.c \
	jpeg_bits.h \
	jpeg_debug.h \
	jpeg_huffman.c \
	jpeg_huffman.h \
	jpeg_internal.h \
	jpeg_rgb_decoder.c \
	jpeg_rgb_decoder.h \
	jpeg_rgb_internal.h \
	jpeg_tables.c 
libjpeg_la_CFLAGS = $(LIBOIL_CFLAGS)

noinst_HEADERS = jpeg.h


jpeg_test_SOURCES = test.c
jpeg_test_CFLAGS = $(LIBOIL_CFLAGS)
jpeg_test_LDADD = libjpeg.la $(LIBOIL_LIBS)

jpeg_rgb_test_SOURCES = test_rgb.c
jpeg_rgb_test_CFLAGS = $(LIBOIL_CFLAGS)
jpeg_rgb_test_LDADD = libjpeg.la $(LIBOIL_LIBS)