makefile
来自「linux下将各类格式图片转换工具」· 代码 · 共 25 行
TXT
25 行
ifeq ($(SRCDIR)x,x) SRCDIR = $(CURDIR)/../../../.. BUILDDIR = $(SRCDIR)endifSUBDIR = converter/other/jpeg2000/libjasperVPATH=.:$(SRCDIR)/$(SUBDIR)include $(BUILDDIR)/Makefile.configSUBDIRS = base jp2 jpcall: libjasper.ainclude $(SRCDIR)/$(SUBDIR)/Makefile.common# We cheat a bit here -- the real dependencies are all the .o files listed# in the part list, but since we don't know what those are, we just do a# 'make all' in each subdirectory to get them built. That means it always# looks like dependencies were rebuilt and libjasper.a gets rebuilt every# time.libjasper.a: $(SUBDIRS:%=%/all) partlist ar rc $@ `cat partlist` $(RANLIB) $@
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?