?? makefile
字號:
############################################################################### Microwindows template Makefile# Copyright (c) 2000 Martin Jolicoeur, Greg Haerr##############################################################################include $(CONFIG)######################## Additional Flags section ############################# Directories list for header filesINCLUDEDIRS += -I../include# Defines for preprocessorDEFINES += -DNANOX=1# Compilation flags for C files OTHER than include directoriesCFLAGS +=# Preprocessor flags OTHER than definesCPPFLAGS +=# Linking flagsLDFLAGS +=############################# targets section ################################ifeq ($(NANOX), Y)ifeq ($(NANOXDEMO), Y)# If you want to create a library with the objects files, define the name hereLIBNAME =# List of objects to compileOBJS = args.o \ rfbproto.o \ sockets.o \ vncviewer.o \ nanox.o all: default $(TOP)/bin/vncendifendif######################### Makefile.rules section #############################include $(TOP)/Makefile.rules######################## Tools targets section ###############################NANOXCLIENTLIBS += $(TOP)/lib/libvncauth.a$(TOP)/bin/vnc: $(OBJS) $(NANOXCLIENTLIBS) $(TOP)/config $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@ $(NANOXCLIENTLIBS)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -