📄 makefile
字号:
############################################################################# Snixos Project version 1.0, 2003.6# (C) Copyright 2003,2004,2005 Jockeyson,KeqiangGao <Snallie@tom.com># All Rights Reserved.# Distributed under the terms of the GNU General Public License.## This program is a free and open source software and you can redistribute # it and/or modify it under the terms of the GNU General Public License as# published by the Free Software Foundation. As no any liability is assumed # for any incidental or consequential damages in connection with the # information or program fragments contained herein,so any exception arised# is at your own risk. It is ABSOLUTELY WITHOUT ANY WARRANTY.# Bug report please send to Snallie@tom.com .############################################################################## makefile for boot.bin# snallie@tom.com 2004.3## VIDEO=VIDEO_GRAPH ,imported from ../makefile# make to produce boot.bin to work in VIDEO_GRAPH_640X480: # make VIDEO=GRAPH# make to produce boot.bin to work in VIDEO_TEXT_80x25: # make VIDEO=TEXTboot.bin:boot.asmifeq ($(VIDEO),GRAPH)# make bootgraph.bin to produce boot.bin to work in VIDEO_GRAPH_640X480 nasm -f bin $< -o $@ -dVIDEO_GRAPH_640X480 -l$@.lstelse# make bootgraph.bin to produce boot.bin to work in VIDEO_TEXT_80X25 nasm -f bin $< -o $@ -l$@.lstendifclean: rm -f *.bin *.lst *~
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -