Changeset 8968e8e in git
- Timestamp:
- Jun 17, 2013, 1:01:28 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 4c20ee09fb049c28f3cf44dc9aaaf12352064de5
- Parents:
- f0f0cea15c937a16db379b549a9170d53a1f1432
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-06-17 13:01:28+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-06-17 13:03:54+02:00
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
rf0f0cea r8968e8e 6 6 endif 7 7 8 PACKAGES=resources omalloc xalloc $(USE_FACTORY) libpolys kernel numeric gfanlib dyn_modules IntegerProgramming Singular dox 8 PACKAGES=resources omalloc xalloc $(USE_FACTORY) \ 9 libpolys kernel numeric gfanlib dyn_modules \ 10 IntegerProgramming Singular dox \ 11 emacs debian redhat desktop 9 12 10 SUBDIRS =$(PACKAGES) 11 TESTDIRS=$(PACKAGES) 13 SUBDIRS = $(PACKAGES) 14 TESTDIRS = omalloc $(USE_FACTORY) libpolys kernel Singular 15 #$(PACKAGES) 12 16 13 emacsdir=$(datadir)/singular/emacs 14 15 EMACS = \ 16 emacs/ChangeLog \ 17 emacs/COPYING \ 18 emacs/NEWS \ 19 emacs/singular.el \ 20 emacs/singular.xpm emacs/.emacs-general emacs/.emacs-singular 21 22 #++ hlp-cmpl.el lib-cmpl.el ex-cmpl.el cmd-cmpl.el ?? 23 #-- emacs/BUGS emacs/cmpl.pl emacs/ESingular.emacs21 emacs/lib.pl emacs/Makefile.in emacs/singular.el.decl 24 25 dist_emacs_DATA = $(EMACS) 26 27 # emacs/test.sing 28 # TODO: remove this! 29 #all-local: 30 # [ -d ${builddir}/emacs ] || ln -s ${srcdir}/emacs ${builddir} 31 32 DEBIAN = README \ 33 debian/changelog \ 34 debian/compat \ 35 debian/control \ 36 debian/copyright \ 37 debian/rules \ 38 debian/singular-bin.install \ 39 debian/singular-common.dirs \ 40 debian/singular-common.install \ 41 debian/singular-dev.install \ 42 debian/source/format \ 43 debian/source/include-binaries 44 45 REDHAT = README \ 46 redhat/singular.spec 47 48 iconsdir = $(datadir)/icons 49 icons_DATA = desktop/Singular.png 50 51 desktopdir = $(datadir)/applications 52 desktop_DATA = desktop/Singular.desktop desktop/Singular-manual.desktop 53 54 substvars = sed \ 55 -e 's|@docdir[@]|$(docdir)|g' \ 56 -e 's|@datadir[@]|$(datadir)|g' \ 57 -e 's|@PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' 58 desktop/Singular.desktop: desktop/Singular.desktop.in 59 $(AM_V_GEN) $(substvars) $< > $@ 60 desktop/Singular-manual.desktop: desktop/Singular-manual.desktop.in 61 $(AM_V_GEN) $(substvars) $< > $@ 62 desktop_in = desktop/Singular.desktop.in desktop/Singular-manual.desktop.in 63 64 EXTRA_DIST = autogen.sh $(EMACS) \ 65 $(DEBIAN) $(REDHAT) \ 66 $(icons_DATA) $(desktop_in) 17 EXTRA_DIST = README autogen.sh 67 18 68 19 bin_SCRIPTS = libsingular-config 69 -
configure.ac
rf0f0cea r8968e8e 176 176 177 177 AC_CONFIG_FILES([redhat/singular.spec]) 178 # AC_CONFIG_FILES([desktop/Singular.desktop]) 179 # AC_CONFIG_FILES([desktop/Singular-manual.desktop]) 180 181 AC_CONFIG_FILES([redhat/Makefile]) 182 AC_CONFIG_FILES([emacs/Makefile]) 183 AC_CONFIG_FILES([debian/Makefile]) 184 AC_CONFIG_FILES([desktop/Makefile]) 178 185 179 186 AC_OUTPUT -
emacs/Makefile.in
rf0f0cea r8968e8e 1 ##################################################################### 2 ### 3 ### Makefile for emacs stuff 4 ### 5 ##################################################################### 6 SHELL=/bin/sh 7 8 prefix = @prefix@ 9 docdir = ${prefix}/doc 10 examplesdir = ${prefix}/examples 11 SINGULAR = @SINGULAR@ 12 singulardir = ${prefix}/Singular 13 emacsdir = ${install_prefix}/emacs 14 15 16 PERL = @PERL@ 17 INSTALL = ../install-sh -c 18 INSTALL_DATA = ${INSTALL} -m 644 19 MKINSTALLDIRS = ../mkinstalldirs 20 21 SINGULAR_HLP = ${docdir}/singular.hlp 22 23 all install: cmd-cmpl.el hlp-cmpl.el lib-cmpl.el ex-cmpl.el 24 25 install_all: install 26 27 cmd-cmpl.el: ${SINGULAR} cmpl.pl 28 ${PERL} cmpl.pl -Singular ${SINGULAR} -cmpl cmd > cmd-cmpl.el 29 30 hlp-cmpl.el: ${SINGULAR_HLP} cmpl.pl 31 ${PERL} cmpl.pl -hlp ${SINGULAR_HLP} -cmpl hlp > hlp-cmpl.el 32 33 ex-cmpl.el: cmpl.pl ${examplesdir} 34 ${PERL} cmpl.pl -cmpl ex -ex_dir ${examplesdir} > ex-cmpl.el 35 36 lib-cmpl-old.el: ${prefix}/Singular/Makefile cmpl.pl 37 ${MAKE} --no-print-directory -s -f ${prefix}/Singular/Makefile echoLIBS > lib-temp 38 cat lib-temp | ${PERL} cmpl.pl -cmpl lib > lib-cmpl-old.el 39 rm lib-temp 40 41 lib-cmpl.el: ${prefix}/Singular/Makefile lib.pl 42 (cd ${prefix}/Singular;${MAKE} --no-print-directory -s -f Makefile echoLIBS) > lib-temp 43 ${PERL} lib.pl -s ${singulardir} `cat lib-temp` > lib-cmpl.el 44 45 clean mostlyclean distclean: 46 rm -f cmd-cmpl.el hlp-cmpl.el lib-cmpl.el ex-cmpl.el 47 48 install-sharedist: all 49 ${MKINSTALLDIRS} ${emacsdir} 50 ${INSTALL_DATA} cmd-cmpl.el ${emacsdir} 51 ${INSTALL_DATA} lib-cmpl.el ${emacsdir} 52 ${INSTALL_DATA} hlp-cmpl.el ${emacsdir} 53 ${INSTALL_DATA} ex-cmpl.el ${emacsdir} 54 ${INSTALL_DATA} singular.el ${emacsdir} 55 ${INSTALL_DATA} .emacs-singular ${emacsdir} 56 ${INSTALL_DATA} .emacs-general ${emacsdir} 57 58 depend: 59 @echo "No make depend available!" 1 # Makefile.in generated by automake 1.13.1 from Makefile.am. 2 # @configure_input@ 3 4 # Copyright (C) 1994-2012 Free Software Foundation, Inc. 5 6 # This Makefile.in is free software; the Free Software Foundation 7 # gives unlimited permission to copy and/or distribute it, 8 # with or without modifications, as long as this notice is preserved. 9 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without 12 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A 13 # PARTICULAR PURPOSE. 14 15 @SET_MAKE@ 16 17 VPATH = @srcdir@ 18 am__make_dryrun = \ 19 { \ 20 am__dry=no; \ 21 case $$MAKEFLAGS in \ 22 *\\[\ \ ]*) \ 23 echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ 24 | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ 25 *) \ 26 for am__flg in $$MAKEFLAGS; do \ 27 case $$am__flg in \ 28 *=*|--*) ;; \ 29 *n*) am__dry=yes; break;; \ 30 esac; \ 31 done;; \ 32 esac; \ 33 test $$am__dry = yes; \ 34 } 35 pkgdatadir = $(datadir)/@PACKAGE@ 36 pkgincludedir = $(includedir)/@PACKAGE@ 37 pkglibdir = $(libdir)/@PACKAGE@ 38 pkglibexecdir = $(libexecdir)/@PACKAGE@ 39 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 40 install_sh_DATA = $(install_sh) -c -m 644 41 install_sh_PROGRAM = $(install_sh) -c 42 install_sh_SCRIPT = $(install_sh) -c 43 INSTALL_HEADER = $(INSTALL_DATA) 44 transform = $(program_transform_name) 45 NORMAL_INSTALL = : 46 PRE_INSTALL = : 47 POST_INSTALL = : 48 NORMAL_UNINSTALL = : 49 PRE_UNINSTALL = : 50 POST_UNINSTALL = : 51 build_triplet = @build@ 52 host_triplet = @host@ 53 subdir = emacs 54 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ 55 $(dist_emacs_DATA) COPYING ChangeLog NEWS 56 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 57 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_append_compile_flags.m4 \ 58 $(top_srcdir)/m4/ax_append_flag.m4 \ 59 $(top_srcdir)/m4/ax_append_link_flags.m4 \ 60 $(top_srcdir)/m4/ax_check_compile_flag.m4 \ 61 $(top_srcdir)/m4/ax_check_link_flag.m4 \ 62 $(top_srcdir)/m4/ax_python_embed.m4 \ 63 $(top_srcdir)/m4/ax_python_with_version.m4 \ 64 $(top_srcdir)/m4/cpu-check.m4 $(top_srcdir)/m4/dbm-check.m4 \ 65 $(top_srcdir)/m4/flags.m4 $(top_srcdir)/m4/flint-check.m4 \ 66 $(top_srcdir)/m4/gfanlib-check.m4 \ 67 $(top_srcdir)/m4/gmp-check.m4 \ 68 $(top_srcdir)/m4/google-perftools.m4 \ 69 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ 70 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ 71 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/ntl-check.m4 \ 72 $(top_srcdir)/m4/options.m4 $(top_srcdir)/m4/p-procs.m4 \ 73 $(top_srcdir)/m4/pipe-check.m4 \ 74 $(top_srcdir)/m4/readline-check.m4 $(top_srcdir)/configure.ac 75 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 76 $(ACLOCAL_M4) 77 mkinstalldirs = $(install_sh) -d 78 CONFIG_HEADER = $(top_builddir)/config.h 79 CONFIG_CLEAN_FILES = 80 CONFIG_CLEAN_VPATH_FILES = 81 AM_V_P = $(am__v_P_@AM_V@) 82 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) 83 am__v_P_0 = false 84 am__v_P_1 = : 85 AM_V_GEN = $(am__v_GEN_@AM_V@) 86 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) 87 am__v_GEN_0 = @echo " GEN " $@; 88 am__v_GEN_1 = 89 AM_V_at = $(am__v_at_@AM_V@) 90 am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) 91 am__v_at_0 = @ 92 am__v_at_1 = 93 SOURCES = 94 DIST_SOURCES = 95 am__can_run_installinfo = \ 96 case $$AM_UPDATE_INFO_DIR in \ 97 n|no|NO) false;; \ 98 *) (install-info --version) >/dev/null 2>&1;; \ 99 esac 100 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; 101 am__vpath_adj = case $$p in \ 102 $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ 103 *) f=$$p;; \ 104 esac; 105 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; 106 am__install_max = 40 107 am__nobase_strip_setup = \ 108 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` 109 am__nobase_strip = \ 110 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" 111 am__nobase_list = $(am__nobase_strip_setup); \ 112 for p in $$list; do echo "$$p $$p"; done | \ 113 sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ 114 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ 115 if (++n[$$2] == $(am__install_max)) \ 116 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ 117 END { for (dir in files) print dir, files[dir] }' 118 am__base_list = \ 119 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ 120 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' 121 am__uninstall_files_from_dir = { \ 122 test -z "$$files" \ 123 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ 124 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ 125 $(am__cd) "$$dir" && rm -f $$files; }; \ 126 } 127 am__installdirs = "$(DESTDIR)$(emacsdir)" 128 DATA = $(dist_emacs_DATA) 129 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) 130 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 131 ACLOCAL = @ACLOCAL@ 132 AMTAR = @AMTAR@ 133 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ 134 AR = @AR@ 135 AUTOCONF = @AUTOCONF@ 136 AUTOHEADER = @AUTOHEADER@ 137 AUTOMAKE = @AUTOMAKE@ 138 AWK = @AWK@ 139 CC = @CC@ 140 CCDEPMODE = @CCDEPMODE@ 141 CFLAGS = @CFLAGS@ 142 CPP = @CPP@ 143 CPPFLAGS = @CPPFLAGS@ 144 CXX = @CXX@ 145 CXXCPP = @CXXCPP@ 146 CXXDEPMODE = @CXXDEPMODE@ 147 CXXFLAGS = @CXXFLAGS@ 148 CYGPATH_W = @CYGPATH_W@ 149 DEFS = @DEFS@ 150 DEPDIR = @DEPDIR@ 151 DLLTOOL = @DLLTOOL@ 152 DOXYGEN = @DOXYGEN@ 153 DSYMUTIL = @DSYMUTIL@ 154 DUMPBIN = @DUMPBIN@ 155 ECHO_C = @ECHO_C@ 156 ECHO_N = @ECHO_N@ 157 ECHO_T = @ECHO_T@ 158 EGREP = @EGREP@ 159 EMBED_PYOBJECT_CFLAGS = @EMBED_PYOBJECT_CFLAGS@ 160 EMBED_PYOBJECT_LDFLAGS = @EMBED_PYOBJECT_LDFLAGS@ 161 EXEEXT = @EXEEXT@ 162 FACTORY_CFLAGS = @FACTORY_CFLAGS@ 163 FACTORY_LIBS = @FACTORY_LIBS@ 164 FGREP = @FGREP@ 165 FLINT_CFLAGS = @FLINT_CFLAGS@ 166 FLINT_HOME = @FLINT_HOME@ 167 FLINT_LIBS = @FLINT_LIBS@ 168 GMP_CFLAGS = @GMP_CFLAGS@ 169 GMP_LIBS = @GMP_LIBS@ 170 GMP_VERSION = @GMP_VERSION@ 171 GREP = @GREP@ 172 INSTALL = @INSTALL@ 173 INSTALL_DATA = @INSTALL_DATA@ 174 INSTALL_PROGRAM = @INSTALL_PROGRAM@ 175 INSTALL_SCRIPT = @INSTALL_SCRIPT@ 176 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ 177 LD = @LD@ 178 LDFLAGS = @LDFLAGS@ 179 LIBOBJS = @LIBOBJS@ 180 LIBS = @LIBS@ 181 LIBTOOL = @LIBTOOL@ 182 LIPO = @LIPO@ 183 LN_S = @LN_S@ 184 LTLIBOBJS = @LTLIBOBJS@ 185 MAINT = @MAINT@ 186 MAKEINFO = @MAKEINFO@ 187 MANIFEST_TOOL = @MANIFEST_TOOL@ 188 MKDIR_P = @MKDIR_P@ 189 NM = @NM@ 190 NMEDIT = @NMEDIT@ 191 NTL_CFLAGS = @NTL_CFLAGS@ 192 NTL_LIBS = @NTL_LIBS@ 193 OBJDUMP = @OBJDUMP@ 194 OBJEXT = @OBJEXT@ 195 OTOOL = @OTOOL@ 196 OTOOL64 = @OTOOL64@ 197 PACKAGE = @PACKAGE@ 198 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ 199 PACKAGE_NAME = @PACKAGE_NAME@ 200 PACKAGE_STRING = @PACKAGE_STRING@ 201 PACKAGE_TARNAME = @PACKAGE_TARNAME@ 202 PACKAGE_URL = @PACKAGE_URL@ 203 PACKAGE_VERSION = @PACKAGE_VERSION@ 204 PATH_SEPARATOR = @PATH_SEPARATOR@ 205 PIPE = @PIPE@ 206 PYTHON = @PYTHON@ 207 PYTHON_CSPEC = @PYTHON_CSPEC@ 208 PYTHON_EXECPREFIX = @PYTHON_EXECPREFIX@ 209 PYTHON_LSPEC = @PYTHON_LSPEC@ 210 PYTHON_PREFIX = @PYTHON_PREFIX@ 211 RANLIB = @RANLIB@ 212 SED = @SED@ 213 SET_MAKE = @SET_MAKE@ 214 SHELL = @SHELL@ 215 SI_COUNTEDREF_AUTOLOAD = @SI_COUNTEDREF_AUTOLOAD@ 216 SI_CPU_I386 = @SI_CPU_I386@ 217 SI_CPU_IA64 = @SI_CPU_IA64@ 218 SI_CPU_PPC = @SI_CPU_PPC@ 219 SI_CPU_SPARC = @SI_CPU_SPARC@ 220 SI_CPU_X86_64 = @SI_CPU_X86_64@ 221 STRIP = @STRIP@ 222 USEPPROCSDYNAMICLD = @USEPPROCSDYNAMICLD@ 223 USEPPROCSDYNAMICLDFLAGS = @USEPPROCSDYNAMICLDFLAGS@ 224 VERSION = @VERSION@ 225 abs_builddir = @abs_builddir@ 226 abs_srcdir = @abs_srcdir@ 227 abs_top_builddir = @abs_top_builddir@ 228 abs_top_srcdir = @abs_top_srcdir@ 229 ac_ct_AR = @ac_ct_AR@ 230 ac_ct_CC = @ac_ct_CC@ 231 ac_ct_CXX = @ac_ct_CXX@ 232 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ 233 am__include = @am__include@ 234 am__leading_dot = @am__leading_dot@ 235 am__quote = @am__quote@ 236 am__tar = @am__tar@ 237 am__untar = @am__untar@ 238 bindir = @bindir@ 239 build = @build@ 240 build_alias = @build_alias@ 241 build_cpu = @build_cpu@ 242 build_os = @build_os@ 243 build_vendor = @build_vendor@ 244 builddir = @builddir@ 245 datadir = @datadir@ 246 datarootdir = @datarootdir@ 247 docdir = @docdir@ 248 dvidir = @dvidir@ 249 exec_prefix = @exec_prefix@ 250 host = @host@ 251 host_alias = @host_alias@ 252 host_cpu = @host_cpu@ 253 host_os = @host_os@ 254 host_vendor = @host_vendor@ 255 htmldir = @htmldir@ 256 includedir = @includedir@ 257 infodir = @infodir@ 258 install_sh = @install_sh@ 259 libdir = @libdir@ 260 libexecdir = @libexecdir@ 261 localedir = @localedir@ 262 localstatedir = @localstatedir@ 263 mandir = @mandir@ 264 mkdir_p = @mkdir_p@ 265 oldincludedir = @oldincludedir@ 266 pdfdir = @pdfdir@ 267 prefix = @prefix@ 268 program_transform_name = @program_transform_name@ 269 psdir = @psdir@ 270 sbindir = @sbindir@ 271 sharedstatedir = @sharedstatedir@ 272 srcdir = @srcdir@ 273 subdirs = @subdirs@ 274 sysconfdir = @sysconfdir@ 275 target_alias = @target_alias@ 276 top_build_prefix = @top_build_prefix@ 277 top_builddir = @top_builddir@ 278 top_srcdir = @top_srcdir@ 279 ACLOCAL_AMFLAGS = -I ../m4 280 emacsdir = $(datadir)/singular/emacs 281 EMACS = \ 282 ChangeLog \ 283 COPYING \ 284 NEWS \ 285 singular.el \ 286 singular.xpm .emacs-general .emacs-singular 287 288 289 #++ hlp-cmpl.el lib-cmpl.el ex-cmpl.el cmd-cmpl.el ?? 290 #-- BUGS cmpl.pl ESingular.emacs21 lib.pl Makefile.in singular.el.decl 291 dist_emacs_DATA = $(EMACS) 292 293 # test.sing 294 # TODO: remove this! 295 #all-local: 296 # [ -d ${builddir} ] || ln -s ${srcdir} ${builddir} 297 EXTRA_DIST = $(EMACS) 298 all: all-am 299 300 .SUFFIXES: 301 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 302 @for dep in $?; do \ 303 case '$(am__configure_deps)' in \ 304 *$$dep*) \ 305 ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ 306 && { if test -f $@; then exit 0; else break; fi; }; \ 307 exit 1;; \ 308 esac; \ 309 done; \ 310 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign emacs/Makefile'; \ 311 $(am__cd) $(top_srcdir) && \ 312 $(AUTOMAKE) --foreign emacs/Makefile 313 .PRECIOUS: Makefile 314 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 315 @case '$?' in \ 316 *config.status*) \ 317 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ 318 *) \ 319 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ 320 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ 321 esac; 322 323 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 324 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 325 326 $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 327 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 328 $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 329 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 330 $(am__aclocal_m4_deps): 331 332 mostlyclean-libtool: 333 -rm -f *.lo 334 335 clean-libtool: 336 -rm -rf .libs _libs 337 install-dist_emacsDATA: $(dist_emacs_DATA) 338 @$(NORMAL_INSTALL) 339 @list='$(dist_emacs_DATA)'; test -n "$(emacsdir)" || list=; \ 340 if test -n "$$list"; then \ 341 echo " $(MKDIR_P) '$(DESTDIR)$(emacsdir)'"; \ 342 $(MKDIR_P) "$(DESTDIR)$(emacsdir)" || exit 1; \ 343 fi; \ 344 for p in $$list; do \ 345 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ 346 echo "$$d$$p"; \ 347 done | $(am__base_list) | \ 348 while read files; do \ 349 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(emacsdir)'"; \ 350 $(INSTALL_DATA) $$files "$(DESTDIR)$(emacsdir)" || exit $$?; \ 351 done 352 353 uninstall-dist_emacsDATA: 354 @$(NORMAL_UNINSTALL) 355 @list='$(dist_emacs_DATA)'; test -n "$(emacsdir)" || list=; \ 356 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ 357 dir='$(DESTDIR)$(emacsdir)'; $(am__uninstall_files_from_dir) 358 tags TAGS: 359 360 ctags CTAGS: 361 362 cscope cscopelist: 363 364 365 distdir: $(DISTFILES) 366 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 367 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 368 list='$(DISTFILES)'; \ 369 dist_files=`for file in $$list; do echo $$file; done | \ 370 sed -e "s|^$$srcdirstrip/||;t" \ 371 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ 372 case $$dist_files in \ 373 */*) $(MKDIR_P) `echo "$$dist_files" | \ 374 sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ 375 sort -u` ;; \ 376 esac; \ 377 for file in $$dist_files; do \ 378 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ 379 if test -d $$d/$$file; then \ 380 dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ 381 if test -d "$(distdir)/$$file"; then \ 382 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 383 fi; \ 384 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ 385 cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ 386 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 387 fi; \ 388 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ 389 else \ 390 test -f "$(distdir)/$$file" \ 391 || cp -p $$d/$$file "$(distdir)/$$file" \ 392 || exit 1; \ 393 fi; \ 394 done 395 check-am: all-am 396 check: check-am 397 all-am: Makefile $(DATA) 398 installdirs: 399 for dir in "$(DESTDIR)$(emacsdir)"; do \ 400 test -z "$$dir" || $(MKDIR_P) "$$dir"; \ 401 done 402 install: install-am 403 install-exec: install-exec-am 404 install-data: install-data-am 405 uninstall: uninstall-am 406 407 install-am: all-am 408 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 409 410 installcheck: installcheck-am 411 install-strip: 412 if test -z '$(STRIP)'; then \ 413 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 414 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 415 install; \ 416 else \ 417 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 418 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 419 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ 420 fi 421 mostlyclean-generic: 422 423 clean-generic: 424 425 distclean-generic: 426 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 427 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) 428 429 maintainer-clean-generic: 430 @echo "This command is intended for maintainers to use" 431 @echo "it deletes files that may require special tools to rebuild." 432 clean: clean-am 433 434 clean-am: clean-generic clean-libtool mostlyclean-am 435 436 distclean: distclean-am 437 -rm -f Makefile 438 distclean-am: clean-am distclean-generic 439 440 dvi: dvi-am 441 442 dvi-am: 443 444 html: html-am 445 446 html-am: 447 448 info: info-am 449 450 info-am: 451 452 install-data-am: install-dist_emacsDATA 453 454 install-dvi: install-dvi-am 455 456 install-dvi-am: 457 458 install-exec-am: 459 460 install-html: install-html-am 461 462 install-html-am: 463 464 install-info: install-info-am 465 466 install-info-am: 467 468 install-man: 469 470 install-pdf: install-pdf-am 471 472 install-pdf-am: 473 474 install-ps: install-ps-am 475 476 install-ps-am: 477 478 installcheck-am: 479 480 maintainer-clean: maintainer-clean-am 481 -rm -f Makefile 482 maintainer-clean-am: distclean-am maintainer-clean-generic 483 484 mostlyclean: mostlyclean-am 485 486 mostlyclean-am: mostlyclean-generic mostlyclean-libtool 487 488 pdf: pdf-am 489 490 pdf-am: 491 492 ps: ps-am 493 494 ps-am: 495 496 uninstall-am: uninstall-dist_emacsDATA 497 498 .MAKE: install-am install-strip 499 500 .PHONY: all all-am check check-am clean clean-generic clean-libtool \ 501 cscopelist-am ctags-am distclean distclean-generic \ 502 distclean-libtool distdir dvi dvi-am html html-am info info-am \ 503 install install-am install-data install-data-am \ 504 install-dist_emacsDATA install-dvi install-dvi-am install-exec \ 505 install-exec-am install-html install-html-am install-info \ 506 install-info-am install-man install-pdf install-pdf-am \ 507 install-ps install-ps-am install-strip installcheck \ 508 installcheck-am installdirs maintainer-clean \ 509 maintainer-clean-generic mostlyclean mostlyclean-generic \ 510 mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ 511 uninstall-am uninstall-dist_emacsDATA 512 513 514 # Tell versions [3.59,3.63) of GNU make to not export all variables. 515 # Otherwise a system limit (for SysV at least) may be exceeded. 516 .NOEXPORT: -
factory/Makefile.am
rf0f0cea r8968e8e 195 195 #################################################### 196 196 # Documentation 197 include $( top_srcdir)/aminclude.am197 include $(srcdir)/aminclude.am 198 198 199 199 doxysrc = $(SOURCES) parseutil.cc
Note: See TracChangeset
for help on using the changeset viewer.