about summary refs log tree commit diff
AgeCommit message (Collapse)AuthorFilesLines
2013-11-25 Add a Makefile for the Perl stuffEelco Dolstra6-7/+59
2013-11-25 Expand configure variables before writing config.statusEelco Dolstra2-3/+10
This way, we can use config.status for generating scripts/* (without ending up with lines like "#! /usr/bin/perl -I${libexecdir}/...").
2013-11-25 Rename Makefile.new -> MakefileEelco Dolstra18-22/+20
2013-11-25 Add a Makefile for the scripts directoryEelco Dolstra7-11/+92
2013-11-25 Add a Makefile for bsdiffEelco Dolstra4-2/+18
2013-11-25 Let ‘make clean’ delete instantiated template filesEelco Dolstra1-0/+2
2013-11-25 Remove obsolete setting of $CC_FOR_BUILDEelco Dolstra1-10/+0
2013-11-25 Add config.guess, config.sub and install-shEelco Dolstra4-9/+3850
Autoreconf doesn't install these if you're not using Automake.
2013-11-25 Don't install LibtoolEelco Dolstra1-16/+0
2013-11-25 Don't instantiate Automake makefilesEelco Dolstra1-25/+1
2013-11-25 Use create-dir for installing dynamic librariesEelco Dolstra2-4/+5
2013-11-25 Add a function for instantiating Autoconf *.in filesEelco Dolstra3-4/+14
2013-11-25 Split Makefile.lib into several *.mk filesEelco Dolstra9-203/+243
2013-11-25 Add a rule for creating directoriesEelco Dolstra1-9/+19
The tricky thing here is that if you have a directory as a prerequisite, you need to declare it as a "order-only prerequisite" ("dir/prog: stuff | dir"), otherwise the target will be rebuilt every time because the timestamp on the directory keeps changing.
2013-11-25 Add a generic rule for installing filesEelco Dolstra2-1/+16
2013-11-23 Install into $(libdir) instead of $(pkglibdir)Eelco Dolstra1-2/+2
We don't need $(pkglibdir) anymore, since the libraries themselves have a "nix" prefix now.
2013-11-23 Use libnix as a prefix for all Nix librariesEelco Dolstra5-0/+10
In particular "libutil" was always a problem because it collides with Glibc's libutil. Even if we install into $(libdir)/nix, the linker sometimes got confused (e.g. if a program links against libstore but not libutil, then ld would report undefined symbols in libstore because it was looking at Glibc's libutil).
2013-11-23 Allow libraries to set an actual name different from the symbolic nameEelco Dolstra1-6/+7
2013-11-23 Add Makefile for nix-log2xmlEelco Dolstra2-0/+6
2013-11-24 Consistent namingEelco Dolstra1-10/+10
2013-11-24 Disallow undefined symbols in dynamic libraries by defaultEelco Dolstra2-4/+12
This encourages that each library declares its own dependencies properly.
2013-11-23 Drop the dependency on libgc in libmainEelco Dolstra4-22/+22
Instead, libexpr now depends on libgc. This means commands like nix-store that don't do any evaluation no longer require libgc.
2013-11-23 Initialise Boehm GC only onceEelco Dolstra1-2/+2
2013-11-23 Allow (dynamic) libraries to depend on other librariesEelco Dolstra5-8/+17
2013-11-23 Support installation of dynamically linked programsEelco Dolstra2-5/+39
Here we need to re-link programs so that their RPATH refers to the installed libraries.
2013-11-23 Implement basic ‘make install’Eelco Dolstra3-3/+13
2013-11-23 Improve building dynamic librariesEelco Dolstra2-7/+11
They now get a correct RPATH.
2013-11-22 Support building dynamic librariesEelco Dolstra4-13/+23
2013-11-22 Fix building without Boehm GCEelco Dolstra2-1/+2
2013-11-22 Add a Makefile variable for enabling debug infoEelco Dolstra2-4/+20
2013-11-22 Introduce variables GLOBAL_CFLAGS and GLOBAL_CXXFLAGSEelco Dolstra2-3/+4
There are flags that must be set, so they shouldn't be overriden by the user's CFLAGS or CXXFLAGS.
2013-11-22 Drop the dependency on AutomakeEelco Dolstra6-17/+18
2013-11-22 Rename $(here) to $(d) for brevity, and remove trailing slashEelco Dolstra12-39/+49
2013-11-22 Automatically regenerate Makefile.configEelco Dolstra2-12/+20
And move some stuff around.
2013-11-22 Respect configure flagsEelco Dolstra3-5/+7
2013-11-22 Add ‘make dist’ supportEelco Dolstra3-6/+23
2013-11-22 Add missing #includeEelco Dolstra1-1/+1
2013-11-22 Remove unnecessary lineEelco Dolstra1-2/+0
2013-11-22 Clean more aggressivelyEelco Dolstra1-2/+2
2013-11-22 Generate the parser and the lexerEelco Dolstra1-1/+5
2013-11-22 Automatically emit make rules for header filesEelco Dolstra2-4/+7
2013-11-22 New non-recursive, plain Make-based build systemEelco Dolstra15-0/+183
2013-11-22 Include <cstring> for memsetEelco Dolstra1-0/+1
This should fix building on Illumos.
2013-11-19 Bump version numberEelco Dolstra1-1/+1
2013-11-19 Check meta values and warn about bad onesEelco Dolstra4-26/+54
2013-11-19 Generalise meta attributesEelco Dolstra5-204/+204
2013-11-19 Shorter error messageEelco Dolstra1-2/+1
2013-11-19 Drop support for user environment manifests in ATerm formatEelco Dolstra1-112/+1
2013-11-19 nix-env -q: Add a --json flagEelco Dolstra1-8/+45
2013-11-19 Refactor JSON outputEelco Dolstra2-13/+56