makefile.vc

来自「tiff文件开发库」· VC 代码 · 共 46 行

VC
46
字号
##	Simple MS VC++ Makefile##	To build:#       C:\libtiff\tools> nmake /f makefile.vc ## Uncomment and edit following lines to enable JPEG support#JPEG_SUPPORT	= 1#JPEGDIR 	= d:/projects/jpeg-6b#JPEG_LIB 	= $(JPEGDIR)/Release/jpeg.libTARGETS	=	tiffcp.exe tiffinfo.exe tiffdump.exe fax2tiff.exe \		fax2ps.exe gif2tiff.exe pal2rgb.exe ppm2tiff.exe \		rgb2ycbcr.exe thumbnail.exe ras2tiff.exe raw2tiff.exe \		tiff2bw.exe tiff2rgba.exe tiff2pdf.exe tiff2ps.exe \		tiffcmp.exe tiffdither.exe tiffmedian.exe tiffsplit.exe EXTRA_OBJ 	= 	strcasecmp.obj getopt.objLIBS		=	..\libtiff\libtiff.libEXTRAFLAGS	=!IFDEF JPEG_SUPPORTLIBS		= $(LIBS) $(JPEG_LIB)EXTRAFLAGS	= $(EXTRAFLAGS) -DJPEG_SUPPORT!ENDIFCFLAGS 	=	/nologo -I..\libtiff /D_WINDOWS $(EXTRAFLAGS)default:	$(EXTRA_OBJ) $(TARGETS).c.exe:	$(CC) $(CFLAGS) $*.c $(EXTRA_OBJ) $(LIBS)tiffgt.exe:	$(CC) $(CFLAGS) tiffgt.c $(EXTRA_OBJ) $(LIBS)getopt.obj:	..\port\getopt.c	$(CC) /c $(CFLAGS) ..\port\getopt.cstrcasecmp.obj:	..\port\strcasecmp.c	$(CC) /c $(CFLAGS) ..\port\strcasecmp.cclean:	del *.obj *.exe

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?