1 Star 0 Fork 0

libsdl-org/tremor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile.os2 746 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ozkan Sezer 提交于 2021-03-31 11:33 . minor update to watcom makefiles
# build tremor (libvorbisidec) using OpenWatcom for OS/2 as a static libary
#
CFLAGS = -bt=os2 -bm -fp5 -fpi87 -mf -oeatxh -w4 -ei -j -zp8
# -5s : Pentium stack calling conventions.
# -5r : Pentium register calling conventions.
CFLAGS += -5s
CFLAGS += -I.
CPPFLAGS= -DHAVE_ALLOCA -DHAVE_ALLOCA_H -D_LOW_ACCURACY_
LIBNAME = vorbisidec.lib
COMPILE = wcc386 -q $(CFLAGS) $(CPPFLAGS)
OBJ = mdct.obj block.obj window.obj synthesis.obj info.obj floor1.obj floor0.obj vorbisfile.obj res012.obj mapping0.obj registry.obj codebook.obj sharedbook.obj
all: $(LIBNAME)
$(LIBNAME): $(OBJ)
wlib -q -b -n -c -pa -s -t -zld -ii -io $@ $(OBJ)
.c.obj:
$(COMPILE) -fo=$^@ $<
distclean: clean .symbolic
rm -f *.lib *.err
clean: .symbolic
rm -f *.obj
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/libsdl-org/tremor.git
[email protected]:libsdl-org/tremor.git
libsdl-org
tremor
tremor
v1.2.1-SDL

搜索帮助