?? makefile
字號:
# Included distributions:# 1. experimental# 2. normal# 3. pareto# 4. paretonormalinclude ../../Configexperimental_headers= experimental.h experimental.mu.h experimental.sigma.hnormal_headers= normal.h normal.mu.h normal.sigma.hpareto_headers= pareto.h pareto.mu.h pareto.sigma.hparetonormal_headers= paretonormal.h paretonormal.mu.h paretonormal.sigma.hheaders= $(experimental_headers) $(normal_headers) $(pareto_headers) $(paretonormal_headers)ifeq ($(strip $(DISTRIBUTION)),) DISTRIBUTION= -DUSE_EXPERIMENTAL -DDISTRIBUTION_NAME="\"experimental\""endifCFLAGS= $(DISTRIBUTION) -I../../include -gPROGS= abnormtable countup cumdist erf findrange fixsigma normdist regrandomall: $(PROGS)install: abnormtable: abnormtable.c $(CC) $(CFLAGS) -o abnormtable abnormtable.c -lmerf: erf.c $(CC) $(CFLAGS) -o erf erf.c -lmfixsigma: fixsigma.c $(CC) $(CFLAGS) -o fixsigma fixsigma.c -lmregrandom: regrandom.o $(CC) $(CFLAGS) -o regrandom regrandom.o ../random.o -lmstats: stats.c $(CC) $(CFLAGS) -o stats stats.c -lmfindrange: findrange.c $(CC) $(CFLAGS) -o findrange findrange.c -lmcumdist: cumdist.c $(CC) $(CFLAGS) -o cumdist cumdist.c -lmnormdist: normdist.c $(CC) $(CFLAGS) -o normdist normdist.c -lmtestnormal: testnormal.c $(CC) $(CFLAGS) -o testnormal testnormal.c ../libstats.o -lmcountup: countup.c $(CC) $(CFLAGS) -o countup countup.c -lmclean: -rm -f *.o $(PROGS)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -