maketemp.tmp

来自「Linux库例程系列一」· TMP 代码 · 共 83 行

TMP
83
字号
CC=mipsel-linux-gccLD=mipsel-linux-ldSTRIP=mipsel-linux-stripAPPNAME=demoifeq ($(CFG), DEBUG)TARGET_PATH=debugOBJS=$(TARGET_PATH)/demo.o RESOBJS=$(TARGET_PATH)/demo.res.o RESC=$(patsubst %.o,%.c,$(RESOBJS))all: $(TARGET_PATH)/$(APPNAME)$(TARGET_PATH)/$(APPNAME): $(OBJS) $(RESOBJS)	@echo link...	@$(CC) -g -G0 $(OBJS) $(O_OBJS) $(RESOBJS) \	-L '/usr/gp1288/mwin/lib' -L '/usr/gp1288/mwin/pda/lib'  \	-lmwdrivers -lmwengine -lmwfonts -lmwin -lmwinlib -lsysmips -lsysdlgmips -ldbmips -laboutmips -lhelpmips -lbmpmips -lcatmips -lmpaintmips -lvCrdCaldmips -lc -lm \	-o $@	@echo link complete.$(TARGET_PATH)/demo.res.o: demo.rc 	@echo compiling $<...	@rc -I'/usr/gp1288/mipsel-linux/include' -I'/usr/gp1288/mwin/include' -I'/usr/gp1288/mwin/pda/include' $< -o $(patsubst %.o,%.c,$@)	@$(CC) -fPIC -msoft-float -I'/usr/gp1288/mipsel-linux/include' -I'/usr/gp1288/mwin/include' -I'/usr/gp1288/mwin/pda/include' -g -DDEBUG -DGVPDA=1 -c $(patsubst %.o,%.c,$@) -o $@$(TARGET_PATH)/demo.o: demo.c 	@echo compiling $<...	@$(CC) -fPIC -msoft-float -I'/usr/gp1288/mipsel-linux/include' -I'/usr/gp1288/mwin/include' -I'/usr/gp1288/mwin/pda/include' -g -DDEBUG -DGVPDA=1 -c $< -o $@clean:	-rm -f $(TARGET_PATH)/$(APPNAME)	-rm -f $(OBJS)	-rm -f $(RESC)	-rm -f $(RESOBJS)endififeq ($(CFG), RELEASE)TARGET_PATH=releaseOBJS=$(TARGET_PATH)/demo.o RESOBJS=$(TARGET_PATH)/demo.res.o RESC=$(patsubst %.o,%.c,$(RESOBJS))all: $(TARGET_PATH)/$(APPNAME)$(TARGET_PATH)/$(APPNAME): $(OBJS) $(RESOBJS)	@echo link...	@$(CC) -G0 $(OBJS) $(O_OBJS) $(RESOBJS) \	-L '/usr/gp1288/mwin/lib' -L '/usr/gp1288/mwin/pda/lib'  \	-lmwdrivers -lmwengine -lmwfonts -lmwin -lmwinlib -lsysmips -lsysdlgmips -ldbmips -laboutmips -lhelpmips -lbmpmips -lcatmips -lmpaintmips -lvCrdCaldmips -lc -lm \	-o $@	@echo link complete.$(TARGET_PATH)/demo.res.o: demo.rc 	@echo compiling $<...	@rc -I'/usr/gp1288/mipsel-linux/include' -I'/usr/gp1288/mwin/include' -I'/usr/gp1288/mwin/pda/include' $< -o $(patsubst %.o,%.c,$@)	@$(CC) -fPIC -msoft-float -I'/usr/gp1288/mipsel-linux/include' -I'/usr/gp1288/mwin/include' -I'/usr/gp1288/mwin/pda/include' -O2 -DNDEBUG -DGVPDA=1 -c $(patsubst %.o,%.c,$@) -o $@$(TARGET_PATH)/demo.o: demo.c 	@echo compiling $<...	@$(CC) -fPIC -msoft-float -I'/usr/gp1288/mipsel-linux/include' -I'/usr/gp1288/mwin/include' -I'/usr/gp1288/mwin/pda/include' -O2 -DNDEBUG -DGVPDA=1 -c $< -o $@clean:	-rm -f $(TARGET_PATH)/$(APPNAME)	-rm -f $(OBJS)	-rm -f $(RESC)	-rm -f $(RESOBJS)endif

⌨️ 快捷键说明

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