summaryrefslogtreecommitdiffstats
path: root/common/jpeg
diff options
context:
space:
mode:
authorAdam Tkac <atkac@redhat.com>2008-06-18 15:29:19 +0000
committerAdam Tkac <atkac@redhat.com>2008-06-18 15:29:19 +0000
commit2bcfb6d2c7a15189feb7745553f71a3352838c45 (patch)
treee501dbc05a0c3745179d0e432841250ae499612e /common/jpeg
parentdefdf85be2a94fbb132e2a045e33caa55da1e06b (diff)
downloadtigervnc-2bcfb6d2c7a15189feb7745553f71a3352838c45.tar.gz
tigervnc-2bcfb6d2c7a15189feb7745553f71a3352838c45.zip
Add headers to Makefile.am-s to fix "make dist" command in common/* subtree
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/1.5-xserver@2591 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/jpeg')
-rw-r--r--common/jpeg/Makefile.am19
1 files changed, 11 insertions, 8 deletions
diff --git a/common/jpeg/Makefile.am b/common/jpeg/Makefile.am
index 530b8ded..b63c6025 100644
--- a/common/jpeg/Makefile.am
+++ b/common/jpeg/Makefile.am
@@ -1,11 +1,14 @@
noinst_LTLIBRARIES = libjpeg.la
-libjpeg_la_SOURCES = jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c \
- jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c \
- jcparam.c jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c \
- jdapistd.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c \
- jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c \
- jdphuff.c jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c \
- jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c \
- jquant1.c jquant2.c jutils.c jmemmgr.c jmemnobs.c
+HDRS = jchuff.h jdct.h jdhuff.h jinclude.h jmemsys.h jpegint.h jpeglib.h \
+ jversion.h
+
+libjpeg_la_SOURCES = $(HDRS) jcapimin.c jcapistd.c jccoefct.c jccolor.c \
+ jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \
+ jcomapi.c jcparam.c jcphuff.c jcprepct.c jcsample.c jctrans.c \
+ jdapimin.c jdapistd.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
+ jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \
+ jdmerge.c jdphuff.c jdpostct.c jdsample.c jdtrans.c jerror.c \
+ jfdctflt.c jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c \
+ jidctred.c jquant1.c jquant2.c jutils.c jmemmgr.c jmemnobs.c