📄 makefile.in
字号:
# Makefile.in --## This file is a Makefile for the BLE executable.## Copyright (c) 1999-2000 Ajuba Solutions.## See the file "license.terms" for information on usage and redistribution# of this file, and for a DISCLAIMER OF ALL WARRANTIES.## RCS: @(#) $Id: Makefile.in,v 1.6 2000/05/30 23:44:46 ericm Exp $BWIDGET_SOURCES = \ arrow.tcl \ bitmap.tcl \ button.tcl \ buttonbox.tcl \ color.tcl \ combobox.tcl \ dialog.tcl \ dragsite.tcl \ dropsite.tcl \ dynhelp.tcl \ entry.tcl \ font.tcl \ init.tcl \ label.tcl \ labelentry.tcl \ labelframe.tcl \ listbox.tcl \ mainframe.tcl \ messagedlg.tcl \ notebook.tcl \ pagesmgr.tcl \ panedw.tcl \ passwddlg.tcl \ progressbar.tcl \ progressdlg.tcl \ scrollframe.tcl \ scrollview.tcl \ scrollw.tcl \ separator.tcl \ spinbox.tcl \ titleframe.tcl \ tree.tcl \ utils.tcl \ widget.tcl \ xpm2image.tclPKGINDEX_TCL = \ $(srcdir)/pkgIndex.tcl#STARTUP_SCRIPT = src/bwidget.tcl#========================================================================# Executable name for creating a wrapped application# We don't currently build a wrapped bwidgets.#========================================================================#BWIDGET = bwidget$(EXEEXT)#========================================================================# Nothing of the variables below this line need to be changed.#========================================================================SHELL = @SHELL@EXEEXT = @EXEEXT@srcdir = @srcdir@top_srcdir = @top_srcdir@prefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@pkglibdir = ${prefix}/lib/@PACKAGE@@VERSION@top_builddir = .INSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA = @INSTALL_DATA@INSTALL_SCRIPT = @INSTALL_SCRIPT@PACKAGE = @PACKAGE@VERSION = @VERSION@PROWRAP = @PROWRAP@AUTOCONF = autoconfCYGPATH=@CYGPATH@CONFIGDIR = @CONFIGDIR@mkinstalldirs = $(SHELL) $(CONFIGDIR)/mkinstalldirs#========================================================================# TEA TARGETS. Please note that the "libraries:" target refers to platform# independent files, and the "binaries:" target inclues executable programs and# platform-dependent libraries. Modify these targets so that they install# the various pieces of your package. The make and install rules# for the BINARIES that you specified above have already been done.#========================================================================all: binaries libraries docbinaries:libraries:doc:install: all install-binaries install-libraries install-doctest:depend:install-binaries:install-libraries: installdirs @echo "Installing script files in $(pkglibdir)" @for i in $(BWIDGET_SOURCES) ; do \ $(INSTALL_SCRIPT) $(srcdir)/$$i $(pkglibdir) ; \ done; @echo "Installing language files in $(pkglibdir)/lang" @for i in $(srcdir)/lang/*.rc ; do \ $(INSTALL_SCRIPT) $$i $(pkglibdir)/lang ; \ done; @echo "Installing image files in $(pkglibdir)/images" @for i in $(srcdir)/images/*.gif $(srcdir)/images/*.xbm ; do \ $(INSTALL_SCRIPT) $$i $(pkglibdir)/images ; \ done; $(INSTALL_SCRIPT) $(PKGINDEX_TCL) $(pkglibdir)install-doc: @echo "Installing html documentation in $(prefix)/doc/$(PACKAGE)$(VERSION)" @for i in $(srcdir)/BWman/*.html ; do \ $(INSTALL_SCRIPT) $$i $(prefix)/doc/$(PACKAGE)$(VERSION) ; \ done;installdirs: $(mkinstalldirs) $(pkglibdir) $(mkinstalldirs) $(pkglibdir)/lang $(mkinstalldirs) $(pkglibdir)/images $(mkinstalldirs) $(prefix)/doc/$(PACKAGE)$(VERSION)clean: -test -z "$(BINARIES)" || rm -f $(BINARIES) -rm -f *.o core *.core -rm -f *.$(OBJEXT) -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)distclean: clean -rm -f *.tab.c -rm -f Makefile $(CONFIG_CLEAN_FILES) -rm -f config.cache config.log stamp-h stamp-h[0-9]* -rm -f config.statusMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) \ && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status#config.status: $(srcdir)/configure# $(SHELL) ./config.status --recheck#$(srcdir)/configure: $(srcdir)/configure.in# cd $(srcdir) && $(AUTOCONF) -l $(srcdir)/../../../sampleextension.PHONY: all binaries clean depend distclean doc install installdirs \libraries test# Tell versions [3.59,3.63) of GNU make to not export all variables.# Otherwise a system limit (for SysV at least) may be exceeded..NOEXPORT:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -