Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-02-28 | Add variable GLOBAL_COMMON_DEPS | Eelco Dolstra | 1 | -1/+1 | |
This is a list of dependencies on which all C/C++ object files depend. Primarily useful for global precompiled headers. | |||||
2014-02-18 | Make it work on GNU Make > 3.81 again | Eelco Dolstra | 1 | -3/+3 | |
2014-02-11 | Support setting CFLAGS and CXXFLAGS for libraries/programs | Eelco Dolstra | 1 | -1/+6 | |
2014-02-07 | Support DESTDIR | Eelco Dolstra | 1 | -5/+5 | |
2014-02-06 | Create the target directory of libraries and programs | Eelco Dolstra | 1 | -1/+3 | |
2014-02-04 | GNU Make 3.81 compatibility | Eelco Dolstra | 1 | -1/+1 | |
3.81 doesn't understand the ‘define foo =’ syntax, which was added in 3.82. So use ‘define foo’ instead. | |||||
2014-02-01 | Make variable names more regular | Eelco Dolstra | 1 | -4/+4 | |
2014-02-01 | Change dependency file names from foo.dep to .foo.o.dep | Eelco Dolstra | 1 | -2/+2 | |
2014-01-10 | Nicer Make output | Eelco Dolstra | 1 | -2/+2 | |
E.g. CXX src/nix-log2xml/log2xml.o CC src/bsdiff-4.3/bsdiff.o GEN scripts/nix-channel LD src/libmain/libnixmain.so | |||||
2014-01-09 | Remove duplicate elements from *_SOURCES | Eelco Dolstra | 1 | -1/+1 | |
This is useful when you do: foo_SOURCES := $(wildcard *.cc) foo.cc where foo.cc is a generated file. In this case, if foo.cc already exists, you get foo.cc twice in foo_SOURCES, leading to a link error. | |||||
2014-01-09 | Move stuff to top-level | Eelco Dolstra | 1 | -0/+62 | |
This makes it easier to use with "git subtree". |