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

📄 makefile

📁 COOOL:CWP面向对象最优化库(CWP Object Oriented Optimization Library) COOOL是C++类的一个集合
💻
字号:
# This is a general makefile for generating all three libraries and includes#you have to define the variable COOOLROOT as the path of the library.#For example, put this in your .cshrc file# setenv COOOLROOT $(HOME)include $(COOOLROOT)/src/Makefile.configdonothing: #To protect against an idle "make" to "see what happens" 	@echo ""	@echo "This is a dangerous makefile--so the default is do_nothing"	@echo "Please read and edit Makefile.config appropriately"	@echo "then type: make install, to install the library"	@echo "or type:   make remake,  to remake the library"install	: checkroot sendmail makedirs makelinks incl library mans demoincl	:	cd ./include; $(MAKE)library	:	cd ./lib; $(MAKE)mans	:	cd ./man; $(MAKE)demo:	cd ./demos; $(MAKE)#check to see if the COOOLROOT path is setcheckroot	:	@./chkroot.sh	@echo $(COOOLROOT)#Make necessary sub directories if nor already existmakedirs:	@echo "Make necessary directories"	@./mkdirectories.sh#Make some necessary symbolic links for some filesmakelinks:	@echo "Make necessary symlinks"	@./mksymlinks.sh $(arch)#Send email to ussendmail:	@echo "Send email to us"	@./mailhome.shremake	:	cd ./include; $(MAKE) remake	cd ./lib; $(MAKE) remake	cd ./man; $(MAKE) remake	cd ./demos; $(MAKE) remakeclean	:	cd ./lib; $(MAKE) cleandistclean	:	cd ./include; $(MAKE) clean	cd ./lib; $(MAKE) distclean	cd ./man; $(MAKE) clean	cd ./demos; $(MAKE) clean	@./rmdirectories.sh

⌨️ 快捷键说明

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