makefile

来自「phab_sample」· 代码 · 共 67 行

TXT
67
字号
## Application Makefile   #ifndef DEBUGDEBUG = -gendififndef OPTIMOPTIM = -OsaxendifPLATFORM=10.6PHABOPTS=#CFLAGS  = -v$(PLATFORM) -3 -mf -w5 $(OPTIM) $(DEBUG) $(PHABOPTS)CPPFLAGS = $(CFLAGS)LDFLAGS = -v$(PLATFORM) -3 -mf $(DEBUG) -l Aplib -l phrtlib -l phexlib -l phcontrib -l photon   -l phrender_s $(PHABOPTS)SDFLAGS = -v$(PLATFORM) -3 -mf $(DEBUG) -l Aplib -l phrtlib -l phexlib -l phcontrib -l photon_s -l phrender_s $(PHABOPTS)VPATH = ../.include	../abOfilesinclude ../indOfilesinclude	../abSfilesinclude ../indSfilesinclude	../abHfilesinclude ../indHfilesinclude	../abWfiles## Application Program#shr:	$(ABOBJ) $(MYOBJ)		$(LD) $(SDFLAGS) $(ABOBJ) $(MYOBJ) -M -o rect		usemsg rect ../Usemsg		phabbind rect $(ABMOD)app:	$(ABOBJ) $(MYOBJ)		$(LD) $(LDFLAGS) $(ABOBJ) $(MYOBJ) -M -o rect		usemsg rect ../Usemsg		phabbind rect $(ABMOD)clean:		rm -f *.o *.err *.map rectinstall:		-cp -vnf rect /usr/bin/photon## Headers#$(ABOBJ) $(MYOBJ):	$(MYHDR)## Prototype Generation#proto:		approto -p $(ABSRC) $(MYSRC) > proto.h

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?