⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 install.mk

📁 Trolltech公司发布的基于C++图形开发环境
💻 MK
字号:
## FreeType 2 installation instructions for Unix systems## Copyright 1996-2000 by# David Turner, Robert Wilhelm, and Werner Lemberg.## This file is part of the FreeType project, and may only be used, modified,# and distributed under the terms of the FreeType project license,# LICENSE.TXT.  By continuing to use, modify, or distribute this file you# indicate that you have read the license and understand and accept it# fully.# Unix installation and deinstallation targets.install: $(PROJECT_LIBRARY)	$(MKINSTALLDIRS) $(libdir)                                 \                         $(includedir)/freetype2/freetype/config   \                         $(includedir)/freetype2/freetype/internal \                         $(includedir)/freetype2/freetype/cache    \                         $(bindir)	$(LIBTOOL) --mode=install $(INSTALL) $(PROJECT_LIBRARY) $(libdir)	-for P in $(PUBLIC_H) ; do                               \          $(INSTALL_DATA) $$P $(includedir)/freetype2/freetype ; \        done	-for P in $(BASE_H) ; do                                          \          $(INSTALL_DATA) $$P $(includedir)/freetype2/freetype/internal ; \        done	-for P in $(CONFIG_H) ; do                                      \          $(INSTALL_DATA) $$P $(includedir)/freetype2/freetype/config ; \        done	-for P in $(CACHE_H) ; do                                      \          $(INSTALL_DATA) $$P $(includedir)/freetype2/freetype/cache ; \        done	$(INSTALL_SCRIPT) -m 755 $(BUILD)/freetype-config \          $(bindir)/freetype-configuninstall:	-$(LIBTOOL) --mode=uninstall $(RM) $(libdir)/$(PROJECT_LIBRARY)	-$(DELETE) $(includedir)/freetype2/freetype/cache/*	-$(DELDIR) $(includedir)/freetype2/freetype/cache	-$(DELETE) $(includedir)/freetype2/freetype/config/*	-$(DELDIR) $(includedir)/freetype2/freetype/config	-$(DELETE) $(includedir)/freetype2/freetype/internal/*	-$(DELDIR) $(includedir)/freetype2/freetype/internal	-$(DELETE) $(includedir)/freetype2/freetype/*	-$(DELDIR) $(includedir)/freetype2/freetype	-$(DELDIR) $(includedir)/freetype2	-$(DELETE) $(bindir)/freetype-config# Unix cleaning and distclean rules.#clean_project_cygwin:	-$(DELETE) $(BASE_OBJECTS) $(OBJ_M) $(OBJ_S)	-$(DELETE) $(patsubst %.$O,%.$(SO),$(BASE_OBJECTS) $(OBJ_M) $(OBJ_S)) \                   $(CLEAN)distclean_project_cygwin: clean_project_cygwin	-$(DELETE) $(PROJECT_LIBRARY)	-$(DELETE) $(OBJ_DIR)/.libs/*	-$(DELDIR) $(OBJ_DIR)/.libs	-$(DELETE) *.orig *~ core *.core $(DISTCLEAN)# EOF

⌨️ 快捷键说明

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