?? makefile
字號:
#### Makefile for timw: 1D synthetic for a line/point## source in water layer above layered ## transvesely isotropic half space#### Include file for machine architecture##include $(HOME)/src/makedef.$(OSV)#### Location for executable##EXEC= $(HOME)/$(OSV)/exe/timw#### -g = Debugging info## -O = Optimize (cannot have -g then)##CFLAGS= -O#### Directory for objects##OBJDIR= $(HOME)/$(OSV)/obj/timw#### Libraries:#### slib : MSYN synthetic utilities ## ulib : General utilities ## ilib : IMSL utilities ## segylib: SEGY I/O utilities ## mathadv: Math Advantage Library## X11 : X11##LIBS= $(HOME)/$(OSV)/lib/slib.a \ $(HOME)/$(OSV)/lib/ulib.a \ $(HOME)/$(OSV)/lib/ilib.a \ $(HOME)/$(OSV)/lib/segylib.a \ $(MADVLIB) \ -lX11##OBJECTS= $(OBJDIR)/timw.o \#### Command to compile and link objects together##$(EXEC): $(OBJECTS) $(F77) $(CFLAGS) -o $(EXEC) $(OBJECTS) $(LIBS)$(OBJDIR)/%.o:%.f $(F77) -c $(CFLAGS) -o $@ $<## .SUFFIXES : .o .f## .f.o :## $(F77) -c $(CFLAGS) -o $@ $<#### End of makefile##
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -