nrcc.mak

来自「随机数生成程序」· MAK 代码 · 共 41 行

MAK
41
字号
CXX = CCCXXFLAGS = -O2 .SUFFIXES:.SUFFIXES: .a .o .c .cppeverything:   tryrand.cpp.o:	      rm -f $*.cxx	      ln $*.cpp $*.cxx  	      $(CXX) $(CXXFLAGS) -c $*.cxx	      rm $*.cxx  OBJ_TR = tryrand.o tryrand1.o tryrand2.o tryrand3.o tryrand4.o hist.o \      newran.o extreal.o myexcept.otryrand:      $(OBJ_TR)	      $(CXX) -o $@ $(OBJ_TR) -L. -lmnewranxx = include.h newran.h boolean.h myexcept.htryrand.o:    $(newranxx) tryrand.cpp tryrand1.o:   $(newranxx) tryrand1.cpp tryrand2.o:   $(newranxx) tryrand2.cpp tryrand3.o:   $(newranxx) tryrand3.cpp tryrand4.o:   $(newranxx) tryrand4.cpp hist.o:       $(newranxx) hist.cpp newran.o:     $(newranxx) newran.cpp extreal.o:    include.h boolean.h extreal.h myexcept.h extreal.cpp myexcept.o:   include.h boolean.h myexcept.h myexcept.cpp 

⌨️ 快捷键说明

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