make.tws

来自「汇编大全 中国矿业大学计算机学院 汇编实验5」· TWS 代码 · 共 41 行

TWS
41
字号
# Makefile for phoon, deltime, parsetime, and libtws (stolen from mh).# Valid options:#   BSD42      Set this if your system is BSD 4.2 or later.#   SYS5       Set this if your system is System V.#   EUROPE     Makes nn/nn/nn mean dd/mm/yy instead of mm/dd/yy.#   ATZ        This has something to do with alpha-numeric time zones.#   DSTXXX     This has something to do with daylight savings time.#   HUJI       I don't#   INETONLY           know what#   LEXDEBUG                     the rest of these#   ONECASE                                        do.## Original posted to mod.sources by Jef Poskanzer. Cannibalized for use# with ARC by Howard Chu.OPTIONS	=	-DBSD42 -DATZ -DDSTXXX -DONECASECC      =	ccCFLAGS  =	-O $(OPTIONS)LDFLAGS =	-nslibtws.a:	dtime.o dtimep.o lexstring.o		ar r libtws.a dtime.o dtimep.o lexstring.o# The following amusing bullshit makes sure that ranlib# gets executed if it is present, no matter which shell# make uses.  If there's a better way to do this, someone# please tell me!		-if test -r /usr/bin/ranlib ; then ranlib libtws.a ; fi		-if ( -r /usr/bin/ranlib ) ranlib libtws.adtime.o:	dtime.c tws.hdtimep.o:	dtimep.c tws.hdtimep.c:	dtimep.lex		lex -nt dtimep.lex | sed -f lexedit.sed > dtimep.clexstring.o:	lexstring.c		$(CC) $(CFLAGS) -c lexstring.c

⌨️ 快捷键说明

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