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

📄 makefile

📁 OpenMosix工具
💻
字号:
## Copyright (c) 2002 David Santo Orcero irbis@orcero.org## http://www.orcero.org/irbis## Mosix is (c) of prof. Barak http://www.mosix.org## OpenMosix is (c) of Moshe Bar http://www.openmosix.com## Each respective trademark is of its own owner## All rights reserved.## This software is distributed under GPL 2#### THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTY IS ASSUMED.## NO LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING## FROM THE USE OF THIS SOFTWARE WILL BE ACCEPTED. IT CAN BURN## YOUR HARD DISK, ERASE ALL YOUR DATA AND BROKE DOWN YOUR ## MICROWAVE OVEN. YOU ARE ADVISED.###  From here to the end, there is nothing more to touch# in a normal instalation.include ./configuration# Here are the dirsDIRS	=	moslib$(KERNELMAINVER) ifeq ($(KERNELMAINVER),2.6)        DIRS := $(DIRS) fixvfork migrate  	#mosctl mosrun ON  WORK	# setpe mosmon THOSE DOES NOT WORK, NEED NODE MANAGEMENTendififeq ($(KERNELMAINVER),2.4)DIRS	:= 	$(DIRS) fixvfork migrate mosrun setpe mosmon mosctl # tune tune does not workendifMAKE	=	makeHERE	=	$(shell pwd)all: clean build man install 	@echo This software is under GPL	@echo You must accept this licence for using it	@echo You are encourage to use, modify and distribute this 	@echo software under GPL terms.	@echo ----------------------------------------------------------	@echo Mosix is \(c\) of prof.  Barak, http://www.mosix.org	@echo OpenMosix is \(c\) of Moshe Bar, http://www.openmosix.org	@echo Makefiles, bugfixing, mainteance \(c\) of David Santo Orcero 	@echo               http://www.orcero.org/irbis	@echo ----------------------------------------------------------	@echo Authors:	@echo fixvfork-\>Ariel Eizenberg	@echo migrate-\>Ariel Rosenblatt, David Santo Orcero	@echo mon-\>Amnon Shiloh	@echo mosctl-\>Amnon Shiloh, Oren Laadan, Ariel Rosenblatt	@echo moslib2.4-\>Ariel Rosenblatt, Amnon Shiloh	@echo moslib2.6-\>David Santo Orcero	@echo mosrun-\>Amnon Shiloh, Ariel Rosenblatt	@echo setpe-\>Amnon Shiloh, Oren Laadan	@echo tune-\>Shlomo Matichen, Amnon Shiloh	@echo OpenMosix inicialization script-\>Amit Shah	@echo omsh.sh,omrunon.sh scripts-\>David Santo Orcero	@echo ----------------------------------------------------------	@echo  This is a fork of prof. Barak\'s Mosix proyect 1.1.2, 	@echo and it is based on the pieces of code that we can proof	@echo that were GPL. 	@echo ----------------------------------------------------------	@echo  Newer versions of Mosix are under a non-free licence, the	@echo MOSIX licence. We do not allow any patch related with any	@echo new feature of Mosix after  1.1.2. We do not allow any 	@echo patch related with non-GPL or non-BSD code. 	@echo ----------------------------------------------------------	@echo  We are not the Mosix group, and any question about Mosix,	@echo its code or its features must be sent to Mosix project 	@echo leader, our admired prof. Barak.	@echo ----------------------------------------------------------	@echo THIS SOFTWARE IS HIGHLY EXPERIMENTAL!!!!!!!!	@echo ----------------------------------------------------------	@echo Please send patchs, comments and suggestions to	@echo irbis@orcero.org	@echo  And happy hacking!		man:	for i in $(DIRS); do echo Working on $$i; cd $(HERE)/$$i ;  $(MAKE) man; done build:	@echo Compiling OpenMosix official userland tools	ln -s moslib$(KERNELMAINVER) moslib || true	for i in $(DIRS); do echo Working on $$i; cd $(HERE)/$$i ;  $(MAKE) build; done install: 	@echo Installing OpenMosix	for i in $(DIRS); do echo Working on $$i; cd $(HERE)/$$i ;  $(MAKE) install; done clean:	@echo Cleaning sources	rm moslib || true	rm -f *~	for i in $(DIRS); do echo Working on $$i; cd $(HERE)/$$i ;  $(MAKE) clean; done 

⌨️ 快捷键说明

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