⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.st

📁 汇编代码大全
💻 ST
字号:
#  Makefile.st	Makefile for UnZip 4.0,#  using Turbo C 2.0 for the Atari ST and#  make from the Mark Williams C 3.9 (sorry for that mixture)## UPPERCASE file names facilitate TD's understanding of modules..SUFFIXES: .o .O .c .C .sTCHOME	= E:\tc###################### MACRO DEFINITIONS ######################CC	= tcc#CFLAGS	= -DATARI_ST=1 -Y -I=$(TCHOME)\includeCFLAGS	= -DATARI_ST=1 -I=$(TCHOME)\include#LFLAGS	= -L -YLFLAGS	=LIB	= $(TCHOME)\libLD	= tlinkOBJS = unzip.o file_io.o mapname.o match.o misc.o\       unimplod.o unreduce.o unshrink.o################################################ BASIC COMPILE INSTRUCTIONS AND DEPENDENCIES ################################################ALL	: unzip.prg	echo doneunzip.o:      unzip.c unzip.hfile_io.o:    file_io.c unzip.hmapname.o:    mapname.c unzip.hmatch.o:      match.c unzip.hmisc.o:       misc.c unzip.hunimplod.o:   unimplod.c unzip.hunreduce.o:   unreduce.c unzip.hunshrink.o:   unshrink.c unzip.hunzip.prg:     $(OBJS)	tlink -O=$@ $(LFLAGS) -S=8192 -C=unzip.lnk.c.o:	tcc $(CFLAGS) $<

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -