~ubuntu-branches/ubuntu/warty/xmedcon/warty

« back to all changes in this revision

Viewing changes to libs/ljpg/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Roland Marcus Rutschmann
  • Date: 2004-06-07 09:00:14 UTC
  • Revision ID: james.westby@ubuntu.com-20040607090014-t39n52qc9zjqqqkh
Tags: upstream-0.9.6
ImportĀ upstreamĀ versionĀ 0.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
 
2
## filename: Makefile.am                                                   ##
 
3
##                                                                         ##
 
4
## UTIL Make   : Medical Image Conversion Utility                          ##
 
5
##                                                                         ##
 
6
## purpose     : ljpg subdir Makefile template (automake)                  ##
 
7
##                                                                         ##
 
8
## project     : (X)MedCon by Erik Nolf                                    ##
 
9
##                                                                         ##
 
10
## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
 
11
## $Id: Makefile.am,v 1.5 2002/11/28 23:12:03 enlf Exp $
 
12
 
 
13
AUTOMAKE_OPTIONS = gnu
 
14
 
 
15
AM_CFLAGS   =
 
16
 
 
17
noinst_LTLIBRARIES = libljpg.la
 
18
libljpg_la_SOURCES = \
 
19
 decomp.c \
 
20
 huffd.c \
 
21
 jpegutil.c \
 
22
 mcu.c \
 
23
 predict.c \
 
24
 read.c
 
25
 
 
26
noinst_HEADERS = \
 
27
 io.h \
 
28
 jpeg.h \
 
29
 jpegless.h \
 
30
 mcu.h \
 
31
 predict.h \
 
32
 proto.h
 
33