?? makefile
字號:
#------------------------------------------------------------------------------# You should not need to change anything below this line.#------------------------------------------------------------------------------sources = $(wildcard *.cc *.c)includedirs = -I..objects = $(addsuffix .o,$(basename $(sources)))defs_notemp = $(strip $(OPT_DEBUG)) $(strip $(GUI))defs = -fno-implicit-templates $(defs_notemp) .c.o: $(COMP) -c $(includedirs) $(defs) $<.cc.o: $(COMP) -c $(includedirs) $(defs) $<# $(CC) -c $(CFLAGS) -fhandle-exceptions -frtti -DEXCEPTIONS $(DEFS) $<all: libui.a#-----------------------------------------------------------------------------# Libraries#-----------------------------------------------------------------------------libui.a: $(objects) ar rcs libui.a $(objects)#------------------------------------------------------------------------------# cleaning up#------------------------------------------------------------------------------deltrash: rm -f *~ DEADJOE t tt logclean: deltrash rm -f *.o .dependdistclean: clean rm -f *.arealclean: distclean # delete everything that can't be build by any meansveryclean: realclean # this is not GNU, but I'm used to it#------------------------------------------------------------------------------# documentation, version control#------------------------------------------------------------------------------ci: @ci -u -q0.20.1 $(sources) $(headers)rcsbkp:#------------------------------------------------------------------------------# dependencies#------------------------------------------------------------------------------templates.o: $(COMP) -c -O $(includedirs) $(defs_notemp) templates.ccifeq (.depend,$(wildcard .depend))include .dependdepend:elsedepend: $(sources) @echo Making dependencies... @$(CPP) $(includedirs) -MM $(defs) $(sources) > .dependendif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -