-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
seperate out src
- Loading branch information
Showing
35 changed files
with
72 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,4 @@ | ||
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} | ||
AUTOMAKE_OPTIONS = foreign | ||
ACLOCAL_AMFLAGS = -I m4 | ||
SUBDIRS = lib cat extract | ||
|
||
AM_CPPFLAGS = -DHAVE_SAMPLE_ICC -DNEED_UCHAR_UINT_T | ||
AM_CXXFLAGS = -std=c++17 $(IMAGEMAGICK_CFLAGS) $(EXIV_CFLAGS) $(SAMPLEICC_CFLAGS) -Wno-deprecated -Wno-pointer-arith -fopenmp -pthread | ||
AM_LDFLAGS = $(IMAGEMAGICK_LIBS) $(EXIV_LIBS) -fopenmp -pthread | ||
|
||
noinst_LTLIBRARIES = libimgcat_helper.la libimgcat.la | ||
|
||
bin_PROGRAMS = imgcat imgprextr | ||
|
||
libimgcat_helper_la_CPPFLAGS = $(AM_CPPFLAGS) | ||
libimgcat_helper_la_CXXFLAGS = $(AM_CXXFLAGS) | ||
libimgcat_helper_la_LDFLAGS = $(AM_LDFLAGS) | ||
libimgcat_helper_la_LIBADD = $(SAMPLEICC_LIBS) | ||
libimgcat_helper_la_SOURCES = \ | ||
ICCprofiles.c \ | ||
version.cc | ||
|
||
libimgcat_la_CPPFLAGS = $(AM_CPPFLAGS) | ||
libimgcat_la_CXXFLAGS = $(AM_CXXFLAGS) $(FFMPEGTHUMB_CFLAGS) $(AVFORMAT_CFLAGS) $(AVUTIL_CFLAGS) $(AVCODEC_CFLAGS) $(AVFILTER_CFLAGS) | ||
libimgcat_la_LDFLAGS = $(AM_LDFLAGS) $(FFMPEGTHUMB_LIBS) $(AVFORMAT_LIBS) $(AVFILTER_LIBS) $(AVUTIL_LIBS) $(AVCODEC_LIBS) | ||
libimgcat_la_LIBADD = $(SAMPLEICC_LIBS) | ||
libimgcat_la_SOURCES = \ | ||
ImgData.cc \ | ||
ImgMetaParser.cc \ | ||
ImgExifParser.cc \ | ||
ImgOut.cc \ | ||
ImgOutJson.cc \ | ||
ImgHtml.cc \ | ||
ImgHtmlJG.cc \ | ||
ImgAVFmtParser.cc \ | ||
ImgIdx.cc \ | ||
ImgKey.cc \ | ||
ImgThumbGen.cc | ||
|
||
imgcat_CPPFLAGS = $(AM_CPPFLAGS) | ||
imgcat_CXXFLAGS = $(AM_CXXFLAGS) $(AVFORMAT_CFLAGS) $(AVUTIL_CFLAGS) $(FFMPEGTHUMB_CFLAGS) | ||
imgcat_LDFLAGS = $(AM_LDFLAGS) $(FFMPEGTHUMB_LIBS) $(AVCODEC_LIBS) $(AVFORMAT_LIBS) $(AVUTIL_LIBS) -lpng -ljpeg | ||
imgcat_LDADD = $(SAMPLEICC_LIBS) libimgcat.la libimgcat_helper.la | ||
imgcat_SOURCES = imgcat.cc | ||
|
||
imgprextr_CPPFLAGS = $(AM_CPPFLAGS) | ||
imgprextr_CXXFLAGS = $(AM_CXXFLAGS) | ||
imgprextr_LDFLAGS = $(AM_LDFLAGS) | ||
imgprextr_LDADD = $(SAMPLEICC_LIBS) libimgcat_helper.la | ||
imgprextr_SOURCES = imgprextr.cc |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} | ||
|
||
AM_CPPFLAGS = -DHAVE_SAMPLE_ICC -DNEED_UCHAR_UINT_T | ||
AM_CXXFLAGS = $(IMAGEMAGICK_CFLAGS) $(EXIV_CFLAGS) $(SAMPLEICC_CFLAGS) -I../lib -Wno-deprecated -Wno-pointer-arith -fopenmp -pthread | ||
AM_LDFLAGS = $(IMAGEMAGICK_LIBS) $(EXIV_LIBS) -fopenmp -pthread -L../lib | ||
|
||
noinst_LTLIBRARIES = libimgcat.la | ||
|
||
bin_PROGRAMS = imgcat | ||
|
||
libimgcat_la_CPPFLAGS = $(AM_CPPFLAGS) | ||
libimgcat_la_CXXFLAGS = $(AM_CXXFLAGS) $(FFMPEGTHUMB_CFLAGS) $(AVFORMAT_CFLAGS) $(AVUTIL_CFLAGS) $(AVCODEC_CFLAGS) $(AVFILTER_CFLAGS) | ||
libimgcat_la_LDFLAGS = $(AM_LDFLAGS) $(FFMPEGTHUMB_LIBS) $(AVFORMAT_LIBS) $(AVFILTER_LIBS) $(AVUTIL_LIBS) $(AVCODEC_LIBS) | ||
libimgcat_la_LIBADD = $(SAMPLEICC_LIBS) | ||
libimgcat_la_SOURCES = \ | ||
ImgData.cc \ | ||
ImgMetaParser.cc \ | ||
ImgExifParser.cc \ | ||
ImgOut.cc \ | ||
ImgOutJson.cc \ | ||
ImgHtml.cc \ | ||
ImgHtmlJG.cc \ | ||
ImgAVFmtParser.cc \ | ||
ImgIdx.cc \ | ||
ImgKey.cc \ | ||
ImgThumbGen.cc | ||
|
||
imgcat_CPPFLAGS = $(AM_CPPFLAGS) | ||
imgcat_CXXFLAGS = $(AM_CXXFLAGS) $(AVFORMAT_CFLAGS) $(AVUTIL_CFLAGS) $(FFMPEGTHUMB_CFLAGS) | ||
imgcat_LDFLAGS = $(AM_LDFLAGS) $(FFMPEGTHUMB_LIBS) $(AVCODEC_LIBS) $(AVFORMAT_LIBS) $(AVUTIL_LIBS) -lpng -ljpeg | ||
imgcat_LDADD = $(SAMPLEICC_LIBS) libimgcat.la -limgcat_helper | ||
imgcat_SOURCES = imgcat.cc |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} | ||
|
||
AM_CPPFLAGS = -DHAVE_SAMPLE_ICC -DNEED_UCHAR_UINT_T | ||
AM_CXXFLAGS = $(IMAGEMAGICK_CFLAGS) $(EXIV_CFLAGS) $(SAMPLEICC_CFLAGS) -I../lib -Wno-deprecated -Wno-pointer-arith -fopenmp -pthread | ||
AM_LDFLAGS = $(IMAGEMAGICK_LIBS) $(EXIV_LIBS) -L../lib -fopenmp -pthread | ||
|
||
noinst_LTLIBRARIES = | ||
|
||
bin_PROGRAMS = imgprextr | ||
|
||
imgprextr_CPPFLAGS = $(AM_CPPFLAGS) | ||
imgprextr_CXXFLAGS = $(AM_CXXFLAGS) | ||
imgprextr_LDFLAGS = $(AM_LDFLAGS) | ||
imgprextr_LDADD = $(SAMPLEICC_LIBS) -limgcat_helper | ||
imgprextr_SOURCES = imgprextr.cc |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} | ||
|
||
AM_CPPFLAGS = -DHAVE_SAMPLE_ICC -DNEED_UCHAR_UINT_T | ||
AM_CXXFLAGS = $(IMAGEMAGICK_CFLAGS) $(EXIV_CFLAGS) $(SAMPLEICC_CFLAGS) -Wno-deprecated -Wno-pointer-arith -fopenmp -pthread | ||
AM_LDFLAGS = $(IMAGEMAGICK_LIBS) $(EXIV_LIBS) | ||
|
||
noinst_LTLIBRARIES = libimgcat_helper.la | ||
|
||
libimgcat_helper_la_CPPFLAGS = $(AM_CPPFLAGS) | ||
libimgcat_helper_la_CXXFLAGS = $(AM_CXXFLAGS) | ||
libimgcat_helper_la_LDFLAGS = $(AM_LDFLAGS) | ||
libimgcat_helper_la_LIBADD = $(SAMPLEICC_LIBS) | ||
libimgcat_helper_la_SOURCES = \ | ||
ICCprofiles.c \ | ||
version.cc |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters