?? makefile
字號:
# TOP_DIR and OBJ_DIR should be set by the user to the right directories,# if necessary.TOP_DIR ?= ../../..OBJ_DIR ?= $(TOP_DIR)/objs# The setup below is for gcc on a Unix-like platform.SRC_DIR = $(TOP_DIR)/src/tools/ftrandomCC = gccWFLAGS = -Wmissing-prototypes \ -Wunused \ -Wimplicit \ -Wreturn-type \ -Wparentheses \ -pedantic \ -Wformat \ -Wchar-subscripts \ -Wsequence-pointCFLAGS = $(WFLAGS) \ -g \ -I $(TOP_DIR)/includeLIBS = -lm \ -L $(OBJ_DIR) \ -lfreetype \ -lzall: $(OBJ_DIR)/ftrandom$(OBJ_DIR)/ftrandom: $(SRC_DIR)/ftrandom.c $(OBJ_DIR)/libfreetype.a $(CC) -o $(OBJ_DIR)/ftrandom $(CFLAGS) $(SRC_DIR)/ftrandom.c $(LIBS)# EOF
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -