?? makereal.unx
字號:
# This makefile makes the most commonly used entirely floating point
# version, bp and leaves the object files around. Use makefile.unx for
# the other possible programs.
# If your C uses the ANSI standard of single precision arithmetic
# instead of the original Kernighan and Richie standard of double for
# all floating point arithmetic you will probably want to change the
# -DDOUBLE flag to -DFLOAT.
# If you're using BSD add the flag -DBSD. If you're using a NeXT add
# the flag -DNEXT. Suns and System V variations don't need an extra
# flag.
CFLAGS= -s -DDOUBLE -DUNIX
bp: bp.o io.o misc.o real.o makereal.unx rbp.h
cc $(CFLAGS) bp.o io.o misc.o real.o -lm -o bp
bp.o: bp.c rbp.h makereal.unx
cc $(CFLAGS) bp.c -c
io.o: io.c rbp.h makereal
cc $(CFLAGS) io.c -c -O
misc.o: misc.c rbp.h makereal
cc $(CFLAGS) misc.c -c -O
real.o: real.c rbp.h makereal
cc $(CFLAGS) real.c -c -O
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -