summaryrefslogtreecommitdiff
path: root/config.mk
AgeCommit message (Collapse)Author
2018-05-01Tweak build system a little bitLaslo Hunhold
Be consistent with brackets and add a comment for OpenBSD to make it clearer what the actual intent of the uncommented line is. In the Makefile, add a dependency of slstatus.o from config.mk.
2018-05-01Revert component-splitLaslo Hunhold
this reverts the commits from 92ab9ef52ebcb097add97d9f78e67ad1c1d6a6ec up to d42870d6ca7fb587b38f8cf6d6821ae33a53a696. After heavy consideration, the component split has more disadvantages than advantages, especially given there will be utility-functions sharing quite a lot of code that would then need to be duplicated, as it does not fit into the util.c due to its speciality. One big advantage of the component-wise build is readability, and without doubt, this was achieved here. This point will be addressed with a different approach that will be visible in the upcoming commits. One big disadvantage of the component build is the fact that it introduces state to the build process which is not necessary. Before its introduction, the only influencing factors where the system-defines __linux__ and __OpenBSD__. With the components, we are also relying on the output of uname(1). Additionally, if the os.mk is not present, make gives the output $ make Makefile:5: os.mk: No such file or directory make: *** No rule to make target 'os.mk'. Stop. This could easily be fixed by providing some sort of meta-rule for this file, however, it indicates the problem we have here, and this entire statefulness will heavily complicate packaging of this tool and makes the build process much more complex than it actually has to be.
2018-04-30Makefile: move OS-specific libs to configure scriptQuentin Rameau
2018-04-30Makefile: separate default flags from user flagsQuentin Rameau
2018-04-29Add OpenBSD support in volume.cparazyd
2017-12-03Small fixes in config.mkAaron Marcher
2017-09-17Properly declare buf as extern and fix all unused-warningsLaslo Hunhold
2017-08-13Fixed man page pathAaron Marcher
According to the FHS, /usr/local/share/man is the correct man page path in this projects's case. Set this to default in config.mk.
2017-08-10Remove d- and v-flagsLaslo Hunhold
d-flag: There's no need for that, use the &-operator or fork+exec in a non-shell-context. In the latter case you get the PID for free. v-flag: If you want to find out which version of a package is installed, consult your package manager. That's his job.
2017-08-10Refactor build systemLaslo Hunhold
2017-04-20enable stack protector and compile to position independent executableAaron Marcher
2017-01-07saner makefile: cleaner, simpler, sucklessAaron Marcher
2016-12-30Merge branch 'master' into masterparazyd
2016-12-29why releases for such a small project? useless and overhead!Aaron Marcher
2016-12-28refactor vol_perc to not depend on alsa librariesparazyd
2016-09-193.0Aaron Marcher
2016-09-18shorter copyright notice and moved back VERSION and _GNU_SOURCE as the man ↵Aaron Marcher
page version number fails
2016-09-18several changesAli H. Fardan
2016-09-18config.mk comment about -Wno-unused-functionsAaron Marcher
2016-09-18optimizationAaron Marcher
2016-09-17added man pageAaron Marcher
2016-09-17added optimization back (removed it for debugging some time ago)Aaron Marcher
2016-09-05bringed back the old config.mkAli H. Fardan
2016-09-05added a tool for resetting the status bar && worked around some issues && ↵Ali H. Fardan
removed the makefile (we need a better one)
2016-09-05config.mk cleanupAli H. Fardan
2016-08-21fixed compiler warnings in a better wayAli H. Fardan
2016-08-21-WextraAli H. Fardan
2016-08-16Removed the debug gcc flagsAaron Marcher
2016-03-10simplify smprintf by using vasprintfDaniel Walter
2016-03-04initial commitAaron Marcher