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

📄 makefile

📁 seismic software,very useful
💻
字号:
# Makefile for ebcdic-ieee conversion# just type "make"## Adapt the flags in the following paragraph to your systemROOT = /files2/data5/zli/lf/cwpUROOT = /files2/data5/zli/lf/sltOPTC =I = $(ROOT)/include K = $(UROOT)/include # Search on the word "Comment" to complete adaptationCFLAGS= $(OPTC) -I$K -I$I# Comment out if your make knows about C libs.c.a:	cc -c $(CFLAGS) $<	ar rv $@ $*.o	/bin/rm -f $*.o.f.a:	$(FC) -c $(CFLAGS) $<	ar rv $@ $*.o	/bin/rm -f $*.o.PRECIOUS:	 $(LIB)LIB = $(UROOT)/lib/libwgc.aARCH =				\	$(LIB)(ebcasc.o)	\	$(LIB)(wgc2sgy.o)	INSTALL:	$(LIB)	@touch $@$(ARCH)	: $D$(LIB)	:	$(ARCH)	ranlib $(LIB)remake	:	@/bin/rm -f $(LIB)	@makelist	:	ar tv $(LIB)clean:	/bin/rm -f junk* core a.out

⌨️ 快捷键说明

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