📄 makefile
字号:
############################################################################### Microwindows template Makefile# Copyright (c) 2000 Martin Jolicoeur, Greg Haerr# Portions Copyright (c) 2002 Koninklijke Philips Electronics N.V.##############################################################################include $(CONFIG)############################# targets section ################################# If you want to create a library with the objects files, define the name hereLIBNAME = libmwengine.a#LIBNAMESO = libmwengine.soifeq ($(ZAURUSMOUSE), Y)CFLAGS += -DFLIP_MOUSE_IN_PORTRAIT_MODE=0endif# List of objects to compileOBJS = devopen.o devdraw.o devfont.o devmouse.o devkbd.o devclip.o devrgn.o \ devpal1.o devpal2.o devimage.o devlist.o selfont.o error.o \ devrgn2.o devarc.o devpoly.o devstipple.o font_dbcs.oifeq ($(HAVE_FREETYPE_SUPPORT), Y)OBJS += font_freetype.oendififeq ($(HAVE_FREETYPE_2_SUPPORT), Y)OBJS += font_freetype2.oendififeq ($(HAVE_FNT_SUPPORT), Y)OBJS += font_fnt.oendififeq ($(HAVE_PCF_SUPPORT), Y)OBJS += font_pcf.oendififeq ($(HAVE_T1LIB_SUPPORT), Y)OBJS += font_t1lib.oendififeq ($(HAVE_HZK_SUPPORT), Y)OBJS += font_hzk.oendififeq ($(HAVE_EUCJP_SUPPORT), Y)OBJS += font_eucjp.oendif#ifeq ($(UNIX), 1)OBJS += devtimer.o#endififneq ($(ARCH), ELKS)OBJS += devpal8.oendififeq ($(GRAYPALETTE), Y)OBJS += devpalgray4.oelseOBJS += devpal4.oendif######################### Makefile.rules section #############################include $(TOP)/Makefile.rules######################## Tools targets section ###############################
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -