aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
Commit message (Collapse)AuthorAge
* Remove seq.in, in favor of the new function. Remove seq detection from ↵Gravatar ridiculousfish2013-01-12
| | | | configure.ac. Teach the Makefile how to remove old installed seqs.
* Pass -f to rm share/man/man1 to avoid a benign error messageGravatar ridiculousfish2013-01-06
|
* Change build_documentation to take its paths as arguments, and the ↵Gravatar ridiculousfish2013-01-03
| | | | Makefile.in to pass them
* Make the Makefile mv man pages instead of cp them from help_doc, because ↵Gravatar ridiculousfish2013-01-03
| | | | help_doc is about to be deleted
* Make share/man/man1 manpages get built againGravatar ridiculousfish2013-01-03
| | | | Addresses https://github.com/fish-shell/fish-shell/issues/491
* Make the Makefile use the new build_documentation.sh script (gulp)Gravatar ridiculousfish2012-12-27
|
* Re-point some URLs at the fish homepage fishshell.comGravatar ridiculousfish2012-12-27
|
* Re-teach Makefile.in how to generate proper version numbers in man pagesGravatar ridiculousfish2012-12-27
|
* Made autoconf stop generating Doxyfile.help in preparation for Xcode ↵Gravatar ridiculousfish2012-12-26
| | | | documentation build phase
* documentation TOC: remove duplicate name attributes, use id attribute insteadGravatar David Adam (zanchey)2012-12-26
|
* Remove tokenizer_test target and codeTGravatar ridiculousfish2012-12-11
|
* Fix compilation with Python dependencies suppression.Gravatar lledey2012-12-09
| | | | Signed-off-by: lledey <lledey@gmail.com>
* Remove Python dependency from Makefile and Xcode buildGravatar ridiculousfish2012-12-08
| | | | https://github.com/fish-shell/fish-shell/issues/429
* Added xcodebuild target in MakefileGravatar ridiculousfish2012-12-01
|
* Escape arguments to certain shell invocations in MakefileGravatar ridiculousfish2012-11-21
| | | | https://github.com/fish-shell/fish-shell/issues/387
* Print autocompletion description after installingGravatar Siteshwar Vashisht2012-09-19
| | | | Print autocompletion shortcut description at end of 'make install'
* Fix to make Makefile copy sample promptsGravatar ridiculousfish2012-09-06
|
* Fix for https://github.com/fish-shell/fish-shell/issues/79Gravatar ridiculousfish2012-07-09
| | | | Release tarballs with the user docs already build, removing the doxygen dependency
* Large set of changes related to making fish relocatable, and improving the ↵Gravatar ridiculousfish2012-07-08
| | | | | | | | | build and install story. - etc/config.fish and share/config.fish are now "universal" and no longer reference install paths or need to be touched by autotools. They've been removed from config.fish.in to config.fish. - fish now attempts to determine __fish_datadir and __fish_sysconfdir relative to the path of the fish executable itself (typically by walking up one directory). This means that you can copy the directory hierarchy around and things will still work. The compiled-in paths are used as a backup. - The fish Xcode project now can build fish natively, without needing autotools. - Version bumped to 2.0
* only touch user_doc if doxygen installedGravatar David Adam (zanchey)2012-06-17
| | | | | If doxygen isn't installed, an empty file called user_doc will be created. If doxygen is later installed, the documentation will not generate correctly.
* make clean should remove all generated documentationGravatar David Adam (zanchey)2012-06-17
|
* correcting path of man-pages to ./man/man1/ instead of ./man/Gravatar Peter Feigl2012-06-15
| | | | | | Change the path where man-pages are installed to /usr/share/fish/man/man1 instead of /usr/share/fish/man, so that tools like mandb can process it.
* Disable internalized scriptsGravatar ridiculousfish2012-06-01
|
* Fix for annoying messages when launching on SnowLeopardGravatar Peter Ammon2012-05-30
| | | | Fix for missing .o file in Makefile.in
* Fix to (really) no longer require Doxygen to build fishGravatar ridiculousfish2012-05-29
|
* Tweaked Makefile.in to show off a few of our new featuresGravatar ridiculousfish2012-05-17
|
* Make key_reader build and workGravatar ridiculousfish2012-05-09
|
* Moved some Python scripts into new share/tools/ directory.Gravatar ridiculousfish2012-03-25
| | | | Added fish_config function to launch web config
* Added term256 support to set_color toolGravatar ridiculousfish2012-03-13
|
* Implemented test as a builtin (!)Gravatar ridiculousfish2012-03-07
|
* Added postforkGravatar ridiculousfish2012-02-29
|
* Change to allow building without doxygenGravatar ridiculousfish2012-02-20
|
* Added color.h, color.cpp. Got term256 colors working.Gravatar ridiculousfish2012-02-12
|
* Final removal of halloc. It's like Christmas Morning.Gravatar ridiculousfish2012-02-09
|
* Changed the Makefile to no longer fail if man pages are missing, etc.Gravatar ridiculousfish2012-02-09
|
* Fix to finally make builtin_scripts.h and builtin_scripts.cpp be generated ↵Gravatar ridiculousfish2012-01-29
| | | | by the Makefile
* New file autoload.h that will ultimately handle autoloading completions and ↵Gravatar ridiculousfish2012-01-25
| | | | functions
* Changes to make completions internalized scripts.Gravatar Peter Ammon2012-01-15
| | | | This about doubles the size of fish. These things are huge. We may not want to ship it like this.
* More work towards incorporating C++ build steps into Makefile.in and ↵Gravatar ridiculousfish2012-01-06
| | | | configure.ac
* Fix to incorporate C++ build changes into configure.ac and Makefile.inGravatar ridiculousfish2012-01-06
|
* Updated dependencies in Makefile.inGravatar ridiculousfish2012-01-05
|
* Incorporate Siteshwar's patch for building on LinuxGravatar ridiculousfish2012-01-05
|
* Makefile: test for xsel directory before trying to clean it.Gravatar Dylan Smith2010-12-02
| | | | This avoids the users seeing ignored errors for make -C clean.
* Makefile: Provide PACKAGE_TARNAME for autoconf default docdirGravatar Dylan Smith2010-11-22
| | | | | | | | | | | | | | docdir was previously being set to "${prefix}/share/doc/${PACKAGE_NAME}" when it wasn't explicitely set on configuration using --docdir. Without this appearing in the Makefile, some files silently get silently installed directly into ${prefix}/share/doc instead within a fish subdirectory. I also added datarootdir to fix an autoconf warning, since autoconf normally would use it for the directory paths (e.g. docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}). The autoconf generated configure script has a hack to fix this, but states: "FIXME: This hack should be removed a few years after 2.60."
* add prof targetGravatar Grissiom2010-10-05
|
* fix bug in build debug targeGravatar Grissiom2010-10-05
|
* use $() in Makefile var expansionGravatar Grissiom2010-09-18
|
* configure xsel in configure phaseGravatar Grissiom2010-09-18
| | | | ... and with the same arguments of fish
* make clean should clean xsel and make distclean should delete itGravatar Grissiom2010-09-18
|
* use variables as xsel targetGravatar Grissiom2010-09-18
|