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

📄 makefile.am

📁 非常著名的曲线拟合程序
💻 AM
字号:
## $Id: Makefile.am,v 1.12 1999/05/26 20:36:25 trow Exp $ ### -I. and buildir gets the .x filesgoosemoduledir = $(datadir)/guile/gooseINCLUDES = \	-I.	\	-I$(top_builddir)/src/guile	\	-I$(top_srcdir)/src/guile	\	$(GLIB_CFLAGS) \	-I$(top_srcdir)/src/specfns \	-I$(top_srcdir)/src/util \	-I$(top_srcdir)/src/linear \	-I$(top_srcdir)/src/containers \	-I$(top_srcdir)/src/stats \	-I$(includedir) \	 $(GUILE_INCS) -DPREFIX=\"$(prefix)\" -DGOOSE_GUILE_DIR=\"$(goosemoduledir)\"lib_LTLIBRARIES = libgoose-guile.la################################################################################# Code to handle building with the "Magic Snarfer"goose_snarfs = \	bootstrap_wrap.x \	pest_wrap.x \	LinearRegression_smob.x \	Random_smob.x \	RealSet_smob.xBUILT_SOURCES = $(goose_snarfs)MAINTAINERCLEANFILES = $(goose_snarfs)CLEANFILES = $(goose_snarfs)EXTRA_DIST = $(goose_snarfs) gooseboot.scm Random_smob.scm RealSet_smob.scmSUFFIXES=.x# just use `make CC=g++' and the revised guile-snarf which uses ${CC} will work# for C++ prototype extraction%.x: %.cpp	$(CXX) -E -DSCM_MAGIC_SNARFER $(INCLUDES) $< | awk 'BEGIN{foo=0} /%%%start/{foo=1} foo==1{print $0}/%%%end/{foo=0}' | sed -e 's/.*\%\%\%start//g' | sed -e 's/\%\%\%end.*//g' > $@##############################################################################libgoose_guile_la_SOURCES = \        guilegoose.cpp \	specfns_smob.cpp \	AsciiImport_smob.cpp \	bootstrap_wrap.cpp \	ConfInt_smob.cpp \	pest_wrap.cpp \	Random_smob.cpp \	RealSet_smob.cpp \	LinearRegression_smob.cpp \	snarf.h## Dump it in the same directory as goose.libgoose_guileincludedir = $(includedir)/goose## Only one header, just for ease of programming. #include <goose/guilegoose.h>libgoose_guileinclude_HEADERS = \        guilegoose.h#install .scm filesinstall-data-local:	$(mkinstalldirs) $(goosemoduledir)	$(INSTALL_DATA) $(srcdir)/gooseboot.scm  $(goosemoduledir)/gooseboot.scm	$(INSTALL_DATA) $(srcdir)/Random_smob.scm  $(goosemoduledir)/Random_smob.scm	$(INSTALL_DATA) $(srcdir)/RealSet_smob.scm  $(goosemoduledir)/RealSet_smob.scmlibgoose_guile_la_LDFLAGS = -version-info $(GUILEGOOSE_CURRENT):$(GUILEGOOSE_REVISION):$(GUILEGOOSE_AGE)bin_PROGRAMS = gooseshellgooseshell_SOURCES = gooseshell.cppgooseshell_LDADD = \	$(GLIB_LIBS) \	$(top_builddir)/src/specfns/libgoose-specfns.la \	$(top_builddir)/src/util/libgoose-util.la \	$(top_builddir)/src/linear/libgoose-linear.la \	$(top_builddir)/src/containers/libgoose-containers.la \	$(top_builddir)/src/stats/libgoose-stats.la \	$(GUILE_LIBS) \	./libgoose-guile.la## $Id: Makefile.am,v 1.12 1999/05/26 20:36:25 trow Exp $ ##

⌨️ 快捷键说明

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