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

📄 makefile

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻
字号:
#par/tools/Makefile# These targets are all defined in this Makefile rather than in # Rules.makeTARGET_EXTRAS  = platform-objs/xmlimport platform-objs/xmlexport TARGET_EXTRAS += platform-objs/parget platform-objs/parsetTARGET_EXTRAS += native-objs/xmlimport native-objs/xmlexport TARGET_EXTRAS += native-objs/parget native-objs/parset# This is called before the build to make sure that all of # our directories are in placePREBUILD_EXTRAS = $(CURDIR)/native-objs $(CURDIR)/platform-objs# This is called after the build to install the native toolsPOSTBUILD_EXTRAS = par-native-install# This specifies the target for installing the platform toolsINSTALL_EXTRAS = par-platform-installNATIVE_INSTALL_TARGETS = $(STAGE_DIR)/bin/native/xmlexport $(STAGE_DIR)/bin/native/xmlimportNATIVE_INSTALL_TARGETS += $(STAGE_DIR)/bin/native/parget $(STAGE_DIR)/bin/native/parset# The directory to install the platform tools inINSTALL_BINDIR=$(INSTALL_DIR)/sbinLIBS= -L$(STAGE_DIR)/lib -lxml -lparNATIVE_LIBS = -L$(STAGE_DIR)/lib/native/ -lxml -lparCLEAN_EXTRAS=par-cleanINCLUDES=-I../libinclude $(BASE_DIR)/Rules.makepar-platform-install: $(INSTALL_BINDIR)	cp platform-objs/xmlimport platform-objs/xmlexport \	platform-objs/parget platform-objs/parset $(INSTALL_BINDIR)par-native-install: $(NATIVE_INSTALL_TARGETS)par-clean:	rm -rf platform-objs native-objsplatform-objs/xmlimport: platform-objs/xmlimport.o platform-objs/parxml.o	$(CC) -o $@ platform-objs/xmlimport.o platform-objs/parxml.o $(LIBS)platform-objs/xmlexport: platform-objs/xmlexport.o platform-objs/parxml.o	$(CC) -o $@ platform-objs/xmlexport.o platform-objs/parxml.o $(LIBS)platform-objs/parget: platform-objs/parget.o	$(CC) -o $@ $< $(LIBS)platform-objs/parset: platform-objs/parset.o	$(CC) -o $@ $< $(LIBS)## Native targetsnative-objs/xmlimport: native-objs/xmlimport.o native-objs/parxml.o	gcc -o $@ native-objs/xmlimport.o native-objs/parxml.o $(NATIVE_LIBS)native-objs/xmlexport: native-objs/xmlexport.o native-objs/parxml.o	gcc -o $@  native-objs/xmlexport.o native-objs/parxml.o $(NATIVE_LIBS)native-objs/parget: native-objs/parget.o	gcc -o $@ $< $(NATIVE_LIBS)native-objs/parset: native-objs/parset.o	gcc -o $@ $< $(NATIVE_LIBS)$(STAGE_DIR)/bin/native/xmlexport: $(STAGE_DIR)/bin/native native-objs/xmlexport	if [ ! -h $(STAGE_DIR)/bin/native/xmlexport ]; then \		ln -s $(CURDIR)/native-objs/xmlexport $@; \	fi$(STAGE_DIR)/bin/native/xmlimport: $(STAGE_DIR)/bin/native native-objs/xmlimport	if [ ! -h $(STAGE_DIR)/bin/native/xmlimport ]; then \		ln -s $(CURDIR)/native-objs/xmlimport $@; \	fi$(STAGE_DIR)/bin/native/parget: $(STAGE_DIR)/bin/native native-objs/parget	if [ ! -h $(STAGE_DIR)/bin/native/parget ]; then \		ln -s $(CURDIR)/native-objs/parget $@; \	fi$(STAGE_DIR)/bin/native/parset: $(STAGE_DIR)/bin/native native-objs/parset	if [ ! -h $(STAGE_DIR)/bin/native/parset ]; then \		ln -s $(CURDIR)/native-objs/parset $@; \	fi$(CURDIR)/platform-objs $(CURDIR)/native-objs $(STAGE_DIR)/bin/native:	@ mkdir -p $@

⌨️ 快捷键说明

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