亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? rules.windml

?? zinc60t22.tar.gz:zinc在tornado2.2.x下的補丁
?? WINDML
字號:
# rules.windml - Host independent rules for making WindML libraries## modification history# --------------------# 01g,18jun03,jlb  Update to Tornado 2.2# 01f,20jul01,gav  SPR 69179.  Restored optimizations for SH.# 01g,20jun01,sts  Sort out the providers of posix threads# 01g,18jun01,c_s  Add Native support# 01f,15jun01,c_s  Remove vx suffix from LIBDIR* in non-VxWorks environments# 01e,19oct00,jlb  For SH7750, turn off optimizations# 01d,17oct00,jlb  Added help message# 01c,16oct00,jlb  Remove ugl archive builds from examples (SPR 35102)#                  Fix create ugl object directory (SPR 34938)# 01b,29sep00,jlb  Added builds from config tool# 01a,31jul00,jlb  created### DESCRIPTION## This file is included by every Makefile in the WindML build.# This file contains makefile rules that are host independent for creating# windML libraries. ## INCLUDES#	include $(WINDML_CONFIG_DIR)/$(WINDML_CONFIG_NAME)_makefile#	include $(TGT_DIR)/h/make/defs.default#       include $(TGT_DIR)/h/make/make.$(CPU)$(TOOL)#	include $(TGT_DIR)/h/make/defs.$(WIND_HOST_TYPE)## The build targets supported for maintaining the WindML are:## targets for maintaining the ugl archive.##  ugl (default)- #        Compiles each modified file and updates the ugl archive with #        with the new object files##  uglrclean/rclean - #        Recursively removes each object file and deletes the archive.  #            ##  uglclean/clean - #        Removes each object file in the current directory#### Build targets for maintaining the WindML demonstration programs##  ugldemo - #       Compiles each modified demo program creating a demo.o and a#       demo_ugl.o object file where the demo_ugl.o file also contains#       the WindML components##  ugldemoclean - #       Removes all the demonstration program object files##   ################################################################################ Include some default definitions#include $(TGT_DIR)/h/make/defs.default############################################################### Main build target when building the examples directory##ifeq ($(BLD_TYPE),UGL_DEMO)ifeq ($(UGL_DEMO_LIST),)build_demo: ugldemoendifendifDefault: checkdir lib subdirs## re-map TOOL_FAMILY to TOOLifeq ($(TOOL_FAMILY),gnu)ifeq ($(findstring diab,$(TOOL)),diab)TOOL_FAMILY     = diabendifendifinclude $(TGT_DIR)/h/tool/$(TOOL_FAMILY)/make.$(CPU)$(TOOL)LIB_ROOT =  $(TGT_DIR)$(DIRCHAR)lib$(DIRCHAR)$(TOOLENV)$(DIRCHAR)$(CPU)$(DIRCHAR)$(TOOL_COMMON_DIR)LIB_PATH =  $(TOOLENV)$(DIRCHAR)$(CPU)$(DIRCHAR)$(TOOL_COMMON_DIR)## Ignore errors deailing with illegal lvalueifeq ($(TOOL_FAMILY),diab)COMMON_COMPILER += -ei1549 -Xvoid-ptr-arith-ok   endif# Include host definitions#include $(TGT_DIR)/h/make/defs.$(WIND_HOST_TYPE)## If RMDIR is not defined (pre VxWorks 5.5), define itifeq ($(RMDIR),)ifeq ($(WIND_HOST_TYPE),x86-win32)RMDIR		= rd /S /QelseRMDIR		= rm -f -rendifendif# Define the WindML archive based on teh VxWoirks versionLIBBASENAME     = wndmlLIBNAME         = $(LIB_PATH)$(DIRCHAR)lib$(LIBBASENAME).aLIBDIRNAME      = obj$(LIBBASENAME)LIBNAME_DIR	= $(LIB_ROOT)$(DIRCHAR)lib$(LIBBASENAME).aLIBDIR		= $(LIB_ROOT)$(DIRCHAR)$(LIBDIRNAME)OBJBASENAME     = $(LIBBASENAME)# Specify the directory name for the example programs.  This is where# the compiled objects for the examples are placedifeq ($(BLD_TYPE),UGL_DEMO)LIBDIR	= $(TGT_DIR)/lib/obj$(CPU)$(TOOL)Appsendif############################################################### Define the implicit rules.c.o :	@ $(RM) $@	$(CC) $(CFLAGS) $(OPTION_OBJECT_ONLY) $<# rules to build objects in $(LIBDIR)$(LIBDIR)/%.o : %.c	@ $(RM) $(subst /,$(DIRCHAR),$@)	$(CC) $(CFLAGS) $(OPTION_OBJECT_ONLY) $(OPTION_OBJECT_NAME)$@ $<# rules to construct object lists# get the list of .c, .cpp and .s filesFILE_LIST       = $(wildcard *.[cs])  $(INDIRECT_SOURCES)# Change .c to .o in FILE_LIST and store in OBJ_PRESENT. These # are the objects we can buildOBJ_PRESENT     = $(FILE_LIST:.c=.o)# Find the intersection of the objects we can build and the objects we'd# like to buildOBJS_TO_BUILD   = $(filter $(OBJ_PRESENT),$(OBJS))#Now we fix up where they will go once they are builtLIBOBJS         = $(foreach file, $(OBJS_TO_BUILD), $(LIBDIR)/$(file))# It is safe to assume that if a subdirectory exists with a Makefile in it # that we want to build it. If this is not the case one needs to over ride # this definition in the Makefile for the directory in concern. ifeq ($(SUBDIRS),)SUBDIRS = $(patsubst %/,%,$(dir $(wildcard */Makefile)))endif# recursive clean rulerclean: ifneq ($(SUBDIRS),)	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) \		TARGET=rclean $(SUBDIRS)endififeq ($(BUILD_FROM_ROOT),yes)	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) dependcleanelse	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) cleanendif## Remove the depend filesdependclean:ifeq ($(WIND_HOST_TYPE),x86-win32)	@if exist depend.$(CPU)$(TOOL) $(RM) depend.$(CPU)$(TOOL)else	@ - if [ -f depend.$(CPU)$(TOOL) ] ; then \		$(RM) depend.$(CPU)$(TOOL) ; \	fiendif         # recursive build of all object#all-objs : objsifneq ($(SUBDIRS),)	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) \		TARGET=al-objs $(SUBDIRS)endif# Just in case you want to build objects and not update the archivesobjs:	$(LIBOBJS)release:	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) \		TARGET=release# Get rules specific to building based on the host#include $(TGT_DIR)/h/make/rules-lib.$(WIND_HOST_TYPE)# we don't need a dependency list if are not building objectsifneq ($(OBJS),)# for WindML, we delete the entire archive for an rcleanifneq ($(TARGET),rclean)# We suppress the warning message about non existent file and setting of errno# by prepending - . GNU make allows this.-include depend.$(CPU)$(TOOL)endifendif# Determine build targets from the configuration toolBLD_UGLA = uglBLD_UGLO = $(filter $(BLD_MODE),uglobj)BLD_UGLE = $(filter $(BLD_MODE),ugldemo)CLEAN_UGLA = $(filter $(CLEAN_MODE),uglrclean)CLEAN_UGLO = $(filter $(CLEAN_MODE),uglobjclean)CLEAN_UGLE = $(filter $(CLEAN_MODE),ugldemorclean)ifneq ($(BLD_TYPE),UGL_DEMO)############################################################## Update the WindML archive#ugl:    checkdir	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) BLD_TYPE=UGL # Recursively remove each object file and the archiveuglrclean: checkdir rclean	$(RM) $(LIBNAME_DIR)	$(RMDIR) $(LIBDIR)# Remove the object file in the current directoryuglclean: checkdir cleanendif###################################################### Build the UGL example programs## Do not archive the demo filesifeq ($(BLD_TYPE),UGL_DEMO)AR = $(ECHO)RANLIB = $(ECHO)endif# Example programs object locations and namesifeq ($(BLD_TYPE),UGL_DEMO)ifeq ($(UGL_DEMO_LIST),)NUM_DEMO_OBJS = $(words $(OBJS))ifeq ($(UGL_APP_NAME),)UGL_APP_NAME = $(OBJS)endifendifendifUGL_DEMO_DIR	= $(LIBDIR)/UGL_APP_OBJ	= $(UGL_DEMO_DIR)$(UGL_APP_NAME)UGL_APP_BASE	= $(basename $(UGL_APP_NAME))UGL_APP_UGL_OBJ	= $(UGL_DEMO_DIR)$(UGL_APP_BASE)_ugl.o# Build the demo.o and the demo_ugl.o object filesugldemo:  checkdirifneq ($(UGL_APP_LAYER),)ifeq ($(BLD_UGLA),)ifeq ($(BLD_UGLO),)	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) BLD_TYPE=UGLendifendif 	$(MAKE) -C example CPU=$(CPU) TOOL=$(TOOL) BLD_TYPE=UGL_DEMO ugldemoendififneq ($(UGL_DEMO_LIST),)	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) BLD_TYPE=UGL_DEMO TARGET=ugldemoendififeq ($(SUBDIRS),)	@$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) BLD_TYPE=UGL_DEMO demo_sa	@$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) BLD_TYPE=UGL_DEMO demo_uglendif# create an application not linked to any librariesdemo_sa: $(UGL_APP_OBJ)ifeq ($(LD_PARTIAL_FLAGS),)LD_PARTIAL_FLAGS = -rendififneq ($(NUM_DEMO_OBJS),1)$(UGL_APP_OBJ): $(LIBOBJS)	$(LD) $(LD_PARTIAL_FLAGS) -o $@ $^ endif# *_ugl links the ugl library in to the applicationdemo_ugl: $(UGL_APP_UGL_OBJ)$(UGL_APP_UGL_OBJ): $(UGL_APP_OBJ) $(LIBNAME_DIR)	$(LD) $(LD_PARTIAL_FLAGS) -o $@ $^############################################################### Remove the WindML demonstration program object files## Handle the recursive cleanugldemorclean:ifneq ($(UGL_APP_LAYER),)	$(MAKE) -C example CPU=$(CPU) TOOL=$(TOOL) BLD_TYPE=UGL_DEMO ugldemorcleanendififneq ($(UGL_DEMO_LIST),)	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) BLD_TYPE=UGL_DEMO TARGET=ugldemorclean $(SUBDIRS)endififeq ($(SUBDIRS),)	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) ugldemocleanendif# clean object files for specific demonstration programugldemoclean:ifneq ($(UGL_APP_NAME),)	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) clean	$(RM) $(UGL_APP_UGL_OBJ)	$(RM) $(UGL_APP_OBJ)else	$(MAKE) CPU=$(CPU) TOOL=$(TOOL) ugldemorcleanendif############################################################### Verify that the uglConfig.h file is present and if not then create from# the template.  File is created by the config tool.#configh:	$(TGT_DIR)/h/ugl/config/uglConfig.h		$(TGT_DIR)/h/ugl/config/uglConfig.h:	$(CP) $(TGT_DIR)$(DIRCHAR)h$(DIRCHAR)ugl$(DIRCHAR)config$(DIRCHAR)uglConfigTemplate.h $(subst /,$(DIRCHAR),$@)ifneq ($(WIND_HOST_TYPE),x86-win32)	chmod 666 $(subst /,$(DIRCHAR),$@)endif 	############################################################### Verify that the required WindML directories are present.#checkdir:ifeq ($(WIND_HOST_TYPE),x86-win32)	@if not exist $(subst /,$(DIRCHAR),$(LIBDIR)) \		@mkdir $(subst /,$(DIRCHAR),$(LIBDIR))else	@ - if [ -d $(LIBDIR) ] ; then \		echo ; \	else \		mkdir $(subst /,$(DIRCHAR),$(LIBDIR)) ; \	fiendif ############################################################### List the build targets  #        #listBld:	@$(ECHO) ! Starting a build for:	@$(ECHO) !ifneq ($(BLD_UGLA),)	@$(ECHO) !    Building the WindML archiveendififneq ($(BLD_UGLO),)	@$(ECHO) !    Building a standalone WindML objectendififneq ($(BLD_UGLE),)	@$(ECHO) !    Building the WindML examplesendif	@$(ECHO) !        ################################################################ Help build targets#helptip:	@$(ECHO) !	@$(ECHO) ! Use make help for additional build targets	@$(ECHO) !help:	@$(ECHO) ! The WindML make file targets provide support for maintaining	@$(ECHO) ! the WindML archive, and building a downloadable WindML object,	@$(ECHO) ! and the WindML example programs.	@$(ECHO) !	@$(ECHO) ! The build targets for maintaining the WindML archive are:	@$(ECHO) !	@$(ECHO) !	@$(ECHO) !  ugl (default) - 	@$(ECHO) !        Compiles each modified file and updates the WindML archive 	@$(ECHO) !        with the updated object files	@$(ECHO) !	@$(ECHO) !  uglrclean/rclean - 	@$(ECHO) !        Recursively removes each object file and deletes the 	@$(ECHO) !        archive.  Archive is only removed when build was from 	@$(ECHO) !        the WindML root.	@$(ECHO) !            	@$(ECHO) !	@$(ECHO) !  uglclean/clean - 	@$(ECHO) !        Removes each object file in the current directory	@$(ECHO) !	@$(ECHO) !	@$(ECHO) !	@$(ECHO) !	@$(ECHO) ! Build targets for maintaining a downloadable WindML object, that	@$(ECHO) ! contains all WindML functionality at the 2D layer along with the	@$(ECHO) ! fonts and device drivers configured as per the configuration	@$(ECHO) ! defined within target/src/ugl/config/uglInit.h.	@$(ECHO) !	@$(ECHO) !  uglobj -	@$(ECHO) !        Builds the WindML object file	@$(ECHO) !	@$(ECHO) !  uglobjclean -	@$(ECHO) !        Removes the WindML object file	@$(ECHO) !	@$(ECHO) !	@$(ECHO) ! Build targets for maintaining the WindML demonstration programs	@$(ECHO) !	@$(ECHO) !  ugldemo - 	@$(ECHO) !       Compiles each modified demo program creating a example.o.	@$(ECHO) !       When this build target is entered at the WindML directory	@$(ECHO) !       tree root, target/src/ugl, the build will also verify	@$(ECHO) !       that the WindML archive is up to date and then link the	@$(ECHO) !       example program against the WindML archive.  The resulting	@$(ECHO) !       object program is named example_ugl.o  The example	@$(ECHO) !       indicates the name of the example program, such as	@$(ECHO) !       ugldemo_ugl.o	@$(ECHO) !	@$(ECHO) !  ugldemoclean - 	@$(ECHO) !       Removes all the demonstration program object files	@$(ECHO) !

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
五月激情六月综合| www.日韩在线| 欧美日韩国产综合草草| 国产精品乱子久久久久| 国产精品综合二区| 精品国产一区二区三区忘忧草| 婷婷六月综合亚洲| 色狠狠桃花综合| 一区二区三区欧美| 99久久精品免费精品国产| 欧美高清一级片在线观看| 国产成人综合亚洲91猫咪| 国产视频一区二区三区在线观看| 蜜臀va亚洲va欧美va天堂 | 成人av网站在线观看| 国产欧美视频在线观看| 国产精品一级片在线观看| 久久精品视频网| 国产一区二区三区电影在线观看| 日韩欧美精品在线| 丝袜诱惑制服诱惑色一区在线观看| 欧美揉bbbbb揉bbbbb| 天堂成人国产精品一区| 日韩免费一区二区三区在线播放| 久久国产麻豆精品| 国产性做久久久久久| av网站免费线看精品| 亚洲综合色成人| 欧美一区二区三区成人| 久久er精品视频| 国产精品午夜在线观看| 欧洲亚洲国产日韩| 另类小说一区二区三区| 国产精品国产三级国产普通话三级| 一本到一区二区三区| 亚洲不卡av一区二区三区| 国产精品电影一区二区三区| 欧美无砖专区一中文字| 青娱乐精品视频在线| 久久综合av免费| 91麻豆国产在线观看| 日韩成人dvd| 久久亚洲一级片| eeuss鲁片一区二区三区在线看| 亚洲国产精品精华液网站| 日韩精品影音先锋| 国产精品一区在线观看乱码 | 裸体歌舞表演一区二区| 久久久久9999亚洲精品| 91福利在线导航| 国产一区二区伦理片| 国产清纯在线一区二区www| 91传媒视频在线播放| 麻豆国产精品一区二区三区 | 美女在线视频一区| 日本一区二区三区久久久久久久久不| 一本到不卡免费一区二区| 五月天婷婷综合| 136国产福利精品导航| 欧美一区二区福利视频| 色综合色狠狠天天综合色| 亚洲成人精品在线观看| 国产精品另类一区| 日韩欧美在线观看一区二区三区| 成人美女视频在线观看18| 蜜桃一区二区三区四区| 一区二区三区不卡在线观看| 久久精品欧美日韩精品| 欧美手机在线视频| jlzzjlzz亚洲日本少妇| 国内精品嫩模私拍在线| 亚州成人在线电影| 欧美激情综合网| 亚洲综合免费观看高清在线观看| 久久免费视频色| 日本精品一级二级| 91视频在线看| 色婷婷综合久色| 色婷婷亚洲婷婷| 欧美在线免费视屏| 欧美午夜在线一二页| 欧美色成人综合| 欧美精品一级二级| 欧美一区日韩一区| 欧美成人r级一区二区三区| 欧美一级片免费看| 精品国产免费久久| 久久九九99视频| 国产精品理论在线观看| 日韩美女久久久| 亚洲一级二级在线| 男人的天堂久久精品| 久久精品国产亚洲高清剧情介绍| 激情久久五月天| 成人激情文学综合网| 日本精品一级二级| 欧美一区二区三区在线电影| 精品国产99国产精品| 国产嫩草影院久久久久| 自拍偷拍国产亚洲| 午夜精品久久久久久不卡8050| 日韩电影在线免费看| 国产一区二区三区| 91在线小视频| 欧美日韩久久一区二区| 精品久久久网站| 亚洲天天做日日做天天谢日日欢| 亚洲一区在线观看免费| 老司机午夜精品| 99热这里都是精品| 日韩午夜电影在线观看| 国产精品久久久久桃色tv| 亚洲成人自拍一区| 国产在线播精品第三| 色屁屁一区二区| 3d成人h动漫网站入口| 久久精品视频在线看| 亚洲图片欧美色图| 激情综合五月天| 日本道精品一区二区三区| 精品国产乱子伦一区| 怡红院av一区二区三区| 精一区二区三区| 欧洲精品一区二区三区在线观看| 日韩精品一区二区三区中文不卡| 亚洲欧洲日本在线| 久久精品国产精品亚洲红杏| 日本韩国欧美一区| 国产色产综合产在线视频| 午夜视频在线观看一区二区 | 欧美一区二区视频免费观看| 亚洲国产精品成人综合| 蜜臀av一区二区在线观看| 99re在线精品| 国产日韩亚洲欧美综合| 日韩电影在线免费看| 91国偷自产一区二区三区成为亚洲经典| 精品久久一区二区| 国产精品一区久久久久| 欧美日韩国产综合久久| 最近中文字幕一区二区三区| 国产成人在线免费观看| 4438成人网| 午夜精品久久一牛影视| 97超碰欧美中文字幕| 精品国产乱码久久久久久蜜臀 | 久久精品国产999大香线蕉| 91免费版在线看| 国产精品成人在线观看| 精品一区二区成人精品| 91精品国产乱| 午夜精品爽啪视频| 在线免费av一区| 亚洲综合免费观看高清在线观看| 99九九99九九九视频精品| 国产女同互慰高潮91漫画| 国产综合成人久久大片91| 欧美成人一级视频| 麻豆一区二区三| 精品裸体舞一区二区三区| 久久精品国产**网站演员| 日韩亚洲国产中文字幕欧美| 偷窥国产亚洲免费视频| 欧美日韩三级一区| 石原莉奈在线亚洲二区| 欧美精品亚洲一区二区在线播放| 亚洲妇熟xx妇色黄| 欧美日韩一区精品| 午夜精品久久久久久久| 欧美一区二区三区视频免费播放| 日韩成人一级片| 精品福利av导航| 国产激情一区二区三区四区| 国产农村妇女毛片精品久久麻豆| 国产91精品一区二区| 国产女人18水真多18精品一级做| 成人教育av在线| 亚洲乱码一区二区三区在线观看| av中文字幕一区| 亚洲天堂成人网| 欧美高清视频www夜色资源网| 青青草一区二区三区| 26uuu欧美| 91老师片黄在线观看| 亚洲第一成人在线| 欧美电视剧在线看免费| 国产精品自拍网站| 日韩一区在线看| 欧美三级电影一区| 天天色综合成人网| 久久久久久久久久看片| 亚洲午夜激情av| 国产激情91久久精品导航| 韩国欧美国产一区| 国产99久久精品| 欧美制服丝袜第一页| 制服丝袜一区二区三区| 亚洲靠逼com| 91精品国产综合久久小美女| 国产高清精品网站|