⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.am

📁 关于遗传算法的一些见地。特别是关于简单遗传程序设计的实现。
💻 AM
字号:
## Process this file with automake to produce Makefile.in######################################################################## gaul-devel/util/Makefile.am######################################################################### util - General collection of C-programming utility routines.# Copyright ©2000-2003, Stewart Adcock <stewart@linux-domain.com># All rights reserved.## The latest version of this program should be available at:# http://gaul.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.  Alternatively, if your project# is incompatible with the GPL, I will probably agree to requests# for permission to use the terms of any other license.## This program is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY WHATSOEVER.## A full copy of the GNU General Public License should be in the file# "COPYING" provided with this distribution; if not, see:# http://www.gnu.org/########################################################################## require automake 1.4AUTOMAKE_OPTIONS = 1.4EXTRA_DIST = gaul/gaul_config.h.inlib_LTLIBRARIES = libgaul_util.la \	libnn_util.lalibgaul_util_la_SOURCES = \	avltree.c \	compatibility.c \	linkedlist.c \	memory_chunks.c \	memory_util.c \	table_util.c \	random_util.c \	timer_util.c \	log_util.clibnn_util_la_SOURCES = \	nn_util.cnobase_include_HEADERS = \	gaul/gaul_config.h \	gaul/gaul_config_win.h \	gaul/gaul_util.h \	gaul/avltree.h \	gaul/compatibility.h \	gaul/linkedlist.h \	gaul/log_util.h \	gaul/memory_chunks.h \	gaul/memory_util.h \	gaul/nn_util.h \	gaul/random_util.h \	gaul/table_util.h \	gaul/timer_util.hlibgaul_util_a_LIBFLAGS =libgaul_util_la_LDFLAGS = -version-info ${GA_MAJOR_VERSION}:${GA_LT_MINOR_VERSION}:0libnn_util_a_LIBFLAGS =libnn_util_la_LDFLAGS = -version-info ${GA_MAJOR_VERSION}:${GA_LT_MINOR_VERSION}:0# Regenerate gaul_config.h with config.status whenever gaul_config.h.in changes.gaul_config.h: gaul/stamp-gaul_config	@:stamp-common: $(srcdir)/gaul/gaul_config.h.in $(top_builddir)/config.status	cd $(top_builddir) \	&& CONFIG_FILES= CONFIG_HEADERS= CONFIG_OTHER=gaul/gaul_config.h \	$(SHELL) ./config.status && echo timestamp > $@# Don't distribute gaul_config.h, since it is build host dependent!# -- Currently, we do distribute this for easier compilation on# systems without the GNU autotools.#dist-hook:#	rm -f $(distdir)/gaul/gaul_config.hdist-hook:	rm -f $(distdir)/gaul/stamp-gaul_config

⌨️ 快捷键说明

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