include.mak
来自「COS 0.0.1.rar Cos操作系统源代码」· MAK 代码 · 共 34 行
MAK
34 行
# Common definitions for all makefiles# Based on the GeekOS makefile, see "COPYING-GEEKOS".# we only support linux now!CC := gccLD := ldOBJCOPY := objcopyCPLUS := g++# Compiler flags.CFLAGS := -O -Wall -D_COS_ -DPROTOTYPES -I../include -fno-builtinCXXFLAGS := $(CFLAGS)LDFLAGS := -nostdlib# CFLAGS includes -DPROTOTYPES for bget# Nasm. This is written for version 0.98NASM := nasmNASMFLAGS := -f elf -i ../include# Perl (needs to be version 5 or later).PERL = perl# Utility scriptsPAD := $(PERL) ../scripts/padNUMSECS := $(PERL) ../scripts/numsecsCAT := catRM := rm -fLS := ls# directories in this projectdirs := . doc include kernel scripts
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?