📄 makefile
字号:
################################################################################ keyboard emulator project## Copyright (C) 1998-2003 Reznic Valery <valery_reznic@users.sourceforge.net>## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.################################################################################TOP_DIR := ..TARGET = kbdeLIBRARIES = -lkbdeCPPFLAGS = $(INCLUDE_PATH) $(DEFINES)CFLAGS = -O2 -g -WallCFILES = kbde.cSOURCES = \ Makefile \ getopt.c \ $(CFILES) \all-local: $(TARGET): gcc $(C_OBJECTS) $(INCLUDE_PATH) $(LIBRARY_PATH) $(LIBRARIES) -o $@$(C_OBJECTS): $(TOPDIR)/VersionTARGET_DIR = $(DESTDIR)/usr/bininstall-local: $(MKDIR) $(TARGET_DIR) $(INSTALL_RUN) $(TARGET) $(TARGET_DIR)include $(TOP_DIR)/Makefile.includeinclude $(TOP_DIR)/Makefile.compile
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -