1 Star 0 Fork 2

wcxu/space-shooter-c

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 565 Bytes
一键复制 编辑 原始数据 按行查看 历史
CFLAGS=-std=c11 -Wall -Wno-unused-result -fno-common -DSOGL_MAJOR_VERSION=3 -DSOGL_MINOR_VERSION=3 -D_POSIX_C_SOURCE=199309L -o build/space-shooter
DEBUG_FLAGS=-g -DSPACE_SHOOTER_DEBUG
RELEASE_FLAGS=-O3
SOURCE_FILES=src/shared/*.c src/game/*.c src/platform/linux/*.c
CC=gcc
LDLIBS=-lX11 -ldl -lGL -lm -lpthread -lasound
debug: assets
$(CC) $(CFLAGS) $(DEBUG_FLAGS) $(SOURCE_FILES) $(LDLIBS)
release: assets
$(CC) $(CFLAGS) $(RELEASE_FLAGS) $(SOURCE_FILES) $(LDLIBS)
assets:
rm -rf build
mkdir build
cp -r assets build/assets
.PHONY: debug release assets
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/helidigi_82118564/space-shooter-c.git
git@gitee.com:helidigi_82118564/space-shooter-c.git
helidigi_82118564
space-shooter-c
space-shooter-c
master

搜索帮助