summaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAge
* Reproducibledebian/0.7.0-2archive/debian/0.7.0-2Christoph Egger2017-10-01
|
* Imported Upstream version 0.7.0Christoph Egger2016-02-08
|
* Imported Upstream version 0.6.2Christoph Egger2016-02-08
|
* Fix make uninstallFlorian Bruhin2013-08-15
|
* Fix triple-slash for install pathsFlorian Bruhin2013-08-15
|
* Makefile: Add install-nodoc targetThorsten Wißmann2013-01-03
|
* Add an 'uninstall' target to the MakefileFlorian Bruhin2012-11-15
|
* Install herbstluftwm-tutorial(7) manpage.Florian Bruhin2012-11-05
|
* Whitespace fixesFlorian Bruhin2012-11-01
| | | | | | | | | | | - Change tabs to four spaces in herbstcommander.sh - Remove empty lines from beginning/end of files (unless it's a .c/.h file or ends with a bullet point) respectively change multiple blank lines at the end of a file to one - Remove whitespace at the end of a line, - Try to get whitespaces for #include/#define's consistent - Try to get whitespace between functions consistent (always 1 blank line instead of 0/1/2)
* Add a herbstluftwm tutorialThorsten Wißmann2012-09-10
| | | | | | | This adds a herbstluftwm tutorial, already describing: - The Installation - The basic configuration with herbstclient
* Separate CFLAGS and CPPFLAGSClemens Lang2012-08-30
|
* Makefile: Add target cleandeps to remove dep-filesThorsten Wißmann2012-06-18
|
* Makefile: Remove unneeded HEADER variableThorsten Wißmann2012-06-18
|
* Makefile: Force rebuild if version.mk changesThorsten Wißmann2012-06-17
| | | | | Enforce the rebuild of all object files and documentation files if the version.mk changes.
* Makefile: Rebuild according to header dependenciesThorsten Wißmann2012-06-17
| | | | This introduces a header dependency file for each object file.
* One Makefile for herbstluftwm and herbstclientThorsten Wißmann2012-06-16
| | | | | | | This merges the two Makefiles for herbstluftwm and herbstclient (in the ipc-client/ subdirectory) into one large Makefile. This also fixes the build error for massive parallel build processes and moves the herbstclient target from ipc-client/ to the main directory.
* Autotoolify the MakefileHans-Peter Deifel2012-06-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | Let the Makefile behave more like the infamous GNU-Autotools. Specifically, the following has changed: - INSTALLDIR is now called DESTDIR - PREFIX is an absolute path and not relative to DESTDIR. The reason for this is that DESTDIR is solely used for installing (for example by gentoos portage, which first install into a temporary directory), while PREFIX and the other variables specify final paths, that can also be included in the application itself or the documentation. - PREFIX is now /usr/local instead of /usr - SHAREDIR is now DATADIR - MANDIR changed from $(DATADIR)/man/man1 to $(DATADIR)/man. - There is now a MAN1DIR. - LICENSEDIR is now set to $(DOCDIR) by default - ETCDIR is now SYSCONFDIR - bash completion is now installed in $(BASHCOMPLETIONDIR)
* Make the install directory for bash completion configurableHans-Peter Deifel2012-06-01
|
* Add make-variable to enable verbose buildsHans-Peter Deifel2012-06-01
| | | | | | | | $(VERBOSE) in config.mk can now be used to enable verbose build. Verbose build will print all command invocations in addition to the colored [CC], [DOC], etc lines. This is especially useful for debugging the build-system. Add make-variable to enable verbose builds
* make mkdir and install configurable via config.mkThorsten Wißmann2012-03-26
| | | | Thanks to Corey Richardson.
* install README and NEWS to doc directoryThorsten Wißmann2012-02-13
|
* tarball now contains a directory of filesThorsten Wißmann2012-01-25
| | | | Now no files are in the root directory of the tarball anymore.
* fixed spelling mistakes in doc and MakefileThorsten Wißmann2012-01-10
|
* added herbstluftwm.desktopThorsten Wißmann2011-12-24
|
* Makefile: added targets for wwwThorsten Wißmann2011-11-14
|
* extra colors.mk for colorized make outputThorsten Wißmann2011-11-05
|
* config.mk: added ASCIIDOC and A2X variablesThorsten Wißmann2011-11-01
|
* added html-doc and manpage to tarballThorsten Wißmann2011-10-26
|
* Makefile: added INSTALLDIR variable and its docThorsten Wißmann2011-10-26
| | | | updated README and config.mk
* added make tar that creates source tarballThorsten Wißmann2011-10-02
|
* make install: install panel.sh and restartpanels.shThorsten Wißmann2011-10-01
|
* make install: copy scripts to examples/ dirThorsten Wißmann2011-10-01
|
* added version number to man pagesThorsten Wißmann2011-09-22
|
* added version number in version.mkThorsten Wißmann2011-09-22
| | | | | | the verison number is set in version.mk. Via -D cflag, It is passed to the C sources. Changing the version now is possible by editing this file and starting a make clean all.
* added zsh completionThorsten Wißmann2011-08-31
|
* install autostart file with executable permissionsThorsten Wißmann2011-08-28
|
* Remove generated herbstluftwm.{1,html} in cleandocChristoph Egger2011-08-28
|
* renamed herbstluftrc to autostartThorsten Wißmann2011-08-27
| | | | | | | | autostart now is placed at $XDG_CONFIG_HOME/herbstluftwm/autostart WARNING: To migrate the old config, the user has to create ~/.config/herbstluftwm/ and has to move their old ~/.config/herbstluftrc to the new folder ~/.config/herbstluftwm/
* replace explicit calls to make with $(MAKE)Christoph Egger2011-08-23
| | | | | replace all occurences of `make` by $(MAKE) making sure properties are inherited to subcommands (like jobserver)
* make install: fixup: install with mode 644Thorsten Wißmann2011-07-30
|
* make: also install LICENSE and BUGSThorsten Wißmann2011-07-30
|
* added installion steps in Makefile/READMEThorsten Wißmann2011-07-30
|
* added first draft of herbstluftwm manpageThorsten Wißmann2011-07-29
|
* added herbstclient manpageThorsten Wißmann2011-07-29
|
* call ipc-client-Makefile from toplevel MakefileThorsten Wißmann2011-07-24
|
* some Makefile refactoringThorsten Wißmann2011-07-22
|
* now also use glibThorsten Wißmann2011-06-26
|
* Basic X11-Display openingThorsten Wißmann2011-05-22
|
* Initial herbstluftwm-commitThorsten Wißmann2011-05-22
with: - Makefile - .gitignore - src/main.c