makefile
来自「Boost provides free peer-reviewed portab」· 代码 · 共 54 行
TXT
54 行
# Copyright 2008 Lubomir Bourdev and Hailin Jin## Distributed under the Boost Software License, Version 1.0.# (See accompanying file LICENSE_1_0.txt or copy at# http://www.boost.org/LICENSE_1_0.txt).SUFFIXES: .cpp #CXX=/usr/local/gcc4/bin/g++#CXX=/usr/local/gcc411/bin/g++CXX=/usr/local/gcc430/bin/g++#CXX=g++#CXX='/cygdrive/c/Program Files/Intel/Compiler/C++/10.0.027/IA32/Bin/icl.exe'CXX_FLAGS=-Wall -DBOOST_GIL_USE_CONCEPT_CHECK #-DNDEBUG CXX_CHECKSUM_FLAGS=-Wall -DBOOST_GIL_NO_IO -DBOOST_GIL_USE_CONCEPT_CHECK #-DNDEBUG BOOST_INCLUDE_PATH=-I../../.. -I../../../../boost_librariesLIBJPEG_INCLUDE_PATH=-I../../../../lib/libjpegLIBJPEG_LIB_PATH=-L../../../../lib/libjpegLIBTIFF_INCLUDE_PATH=-I../../../../lib/libtiffLIBTIFF_LIB_PATH=-L../../../../lib/libtiffLIBPNG_INCLUDE_PATH=-I../../../../lib/libpngLIBPNG_LIB_PATH=-L../../../../lib/libpngLIBZ_LIB_PATH=-L../../../../lib/zliball: performance channel_test pixel_test pixel_iterator_test image_checksum_test image_io_checksum_test.cpp.o:# ${CXX} ${CXX_FLAGS} ${BOOST_INCLUDE_PATH} ${LIBJPEG_INCLUDE_PATH} ${LIBTIFF_INCLUDE_PATH} ${LIBPNG_INCLUDE_PATH} -c $< ${CXX} ${CXX_CHECKSUM_FLAGS} ${BOOST_INCLUDE_PATH} -c $<clean: -rm -f *.o *.exe performance: performance.o ${CXX} -o performance ${CXX_FLAGS} performance.ochannel_test: channel.o error_if.o ${CXX} -o channel_test ${CXX_CHECKSUM_FLAGS} channel.o error_if.opixel_test: pixel.o error_if.o ${CXX} -o pixel_test ${CXX_CHECKSUM_FLAGS} pixel.o error_if.opixel_iterator_test: pixel_iterator.o error_if.o ${CXX} -o pixel_iterator_test ${CXX_CHECKSUM_FLAGS} pixel_iterator.o error_if.oimage_checksum_test: image.o error_if.o sample_image.o ${CXX} -o image_checksum_test ${CXX_CHECKSUM_FLAGS} image.o error_if.o sample_image.o image_test: image.o error_if.o sample_image.o ${CXX} -o image_test ${CXX_FLAGS} image.o error_if.o sample_image.o ${LIBJPEG_LIB_PATH} -ljpeg ${LIBTIFF_LIB_PATH} -ltiff ${LIBPNG_LIB_PATH} -lpng ${LIBZ_LIB_PATH} -lzimage_io_checksum_test: image_io.o error_if.o ${CXX} -o image_io_checksum_test ${CXX_CHECKSUM_FLAGS} image_io.o error_if.oimage_io_test: image_io.o error_if.o ${CXX} -o image_io_test ${CXX_FLAGS} image_io.o error_if.o ${LIBJPEG_LIB_PATH} -ljpeg ${LIBTIFF_LIB_PATH} -ltiff ${LIBPNG_LIB_PATH} -lpng ${LIBZ_LIB_PATH} -lzrun_all: channel_test pixel_test pixel_iterator_test image_checksum_test image_io_checksum_test channel_test pixel_test pixel_iterator_test image_checksum_test image_io_checksum_test
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?