makefile

来自「开源的键盘模拟程序」· 代码 · 共 47 行

TXT
47
字号
################################################################################    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 + =
减小字号Ctrl + -
显示快捷键?