?? makefile
字號:
############################################################################### Microwindows template Makefile# Copyright (c) 2000 Martin Jolicoeur, Greg Haerr##############################################################################include $(CONFIG)######################## Additional Flags section ############################# Directories list for header filesINCLUDEDIRS +=# Defines for preprocessorDEFINES +=# Compilation flags for C files OTHER than include directoriesCFLAGS +=# Preprocessor flags OTHER than definesCPPFLAGS +=# Linking flagsLDFLAGS += -Wl,--gc-sections -Wl,-static -Wl,-N -g -O2 -nostdlib -L$(ECOS_PREFIX)/lib -Ttarget.ld############################# targets section ################################# If you want to create a library with the objects files, define the name hereLIBNAME =LIBNAMESO =# List of objects to compileOBJS = ecos_app.o ecos_init.oNANO_OBJS = DEFINES += -DUSE_ROMDISKOBJS += nanox_thread.oNANO_OBJS += $(TOP)/bin/nano-X.o $(TOP)/bin/nwidgets.oOBJS += nanowm_thread.oNANO_OBJS += $(TOP)/bin/nanowm.oOBJS += nxkbd_thread.oNANO_OBJS += $(TOP)/bin/nxkbd.oDEFINES += -DUSE_NXSCRIBBLEOBJS += nxscribble_thread.oNANO_OBJS += $(TOP)/bin/nxscribble.o DEFINES += -DUSE_LANDMINEOBJS += landmine_thread.oNANO_OBJS += $(TOP)/bin/landmine.o DEFINES += -DUSE_NTETRISOBJS += ntetris_thread.oNANO_OBJS += $(TOP)/bin/ntetris.o DEFINES += -DUSE_WORLDOBJS += world_thread.oNANO_OBJS += $(TOP)/bin/world.o # demos should be built after the libs !all: ecos_app######################### Makefile.rules section #############################include $(TOP)/Makefile.rules######################## Tools targets section ###############################ecos_app: $(OBJS) $(NANO_OBJS)ecos_app.o: Makefile
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -