mirror of
https://github.com/NixOS/nix.git
synced 2024-10-31 22:30:52 +00:00
f6a3dfe4e0
These are all symlinks to 'nix' now, reducing the installed size by about ~1.7 MiB.
30 lines
566 B
Makefile
30 lines
566 B
Makefile
makefiles = \
|
|
local.mk \
|
|
src/libutil/local.mk \
|
|
src/libstore/local.mk \
|
|
src/libmain/local.mk \
|
|
src/libexpr/local.mk \
|
|
src/nix/local.mk \
|
|
src/resolve-system-dependencies/local.mk \
|
|
scripts/local.mk \
|
|
corepkgs/local.mk \
|
|
misc/systemd/local.mk \
|
|
misc/launchd/local.mk \
|
|
misc/upstart/local.mk \
|
|
doc/manual/local.mk \
|
|
tests/local.mk \
|
|
tests/plugins/local.mk
|
|
|
|
GLOBAL_CXXFLAGS += -g -Wall -include config.h
|
|
|
|
-include Makefile.config
|
|
|
|
OPTIMIZE = 1
|
|
|
|
ifeq ($(OPTIMIZE), 1)
|
|
GLOBAL_CFLAGS += -O3
|
|
GLOBAL_CXXFLAGS += -O3
|
|
endif
|
|
|
|
include mk/lib.mk
|