?? makefile.st
字號(hào):
# 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) $<
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -