makefile.st
来自「汇编源代码大全」· ST 代码 · 共 56 行
ST
56 行
# 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 + =
减小字号Ctrl + -
显示快捷键?