1 Star 1 Fork 1

vsf-linux / x8086tiny

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 898 Bytes
一键复制 编辑 原始数据 按行查看 历史
Adrian Cable 提交于 2014-03-19 16:08 . Revision 1.25
# 8086tiny: a tiny, highly functional, highly portable PC emulator/VM
# Copyright 2013-14, Adrian Cable (adrian.cable@gmail.com) - http://www.megalith.co.uk/8086tiny
#
# This work is licensed under the MIT License. See included LICENSE.TXT.
# 8086tiny builds with graphics and sound support
# 8086tiny_slowcpu improves graphics performance on slow platforms (e.g. Raspberry Pi)
# no_graphics compiles without SDL graphics/sound
OPTS_ALL=-O3 -fsigned-char -std=c99
OPTS_SDL=`sdl-config --cflags --libs`
OPTS_NOGFX=-DNO_GRAPHICS
OPTS_SLOWCPU=-DGRAPHICS_UPDATE_DELAY=25000
8086tiny: 8086tiny.c
${CC} 8086tiny.c ${OPTS_SDL} ${OPTS_ALL} -o 8086tiny
strip 8086tiny
8086tiny_slowcpu: 8086tiny.c
${CC} 8086tiny.c ${OPTS_SDL} ${OPTS_ALL} ${OPTS_SLOWCPU} -o 8086tiny
strip 8086tiny
no_graphics: 8086tiny.c
${CC} 8086tiny.c ${OPTS_NOGFX} ${OPTS_ALL} -o 8086tiny
strip 8086tiny
clean:
rm 8086tiny
1
https://gitee.com/vsf-linux/x8086tiny.git
git@gitee.com:vsf-linux/x8086tiny.git
vsf-linux
x8086tiny
x8086tiny
master

搜索帮助