📄 makefile.beos
字号:
#
#
# SNEeSe, an Open Source Super NES emulator.
#
#
# Copyright (c) 1998-2004 Charles Bilyue'.
# Portions Copyright (c) 2003-2004 Daniel Horchner.
#
# This is free software. See 'LICENSE' for details.
# You must read and accept the license prior to use.
#
#
PLATFORM := beos
# BeOS
# How to call the tools we need to use
NASM := nasm -w+orphan-labels -w+macro-params -O20
GCC := gcc -Werror -Wall
RM := rm -f
MD := mkdir -p
# Default filename extension for executables
EXE_EXT :=
# How to inform the linker of libraries we're using
ALLEG := `allegro-config --shared`
# Set up build for this platform.
SUFFIX :=
AFLAGS := -f elf
GXX := g++
NO_SELF_MODIFY := 1
ZLIB := 1 # comment this line to disable ZLIB support
ifdef ZLIB
MIOFLAGS := -lz
endif
include makefile.all
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -