?? make.tws
字號:
# 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -