forked from lix-project/lix
47b3508665
Additionally this skipping of the building is reimplemented to be a bit more robust and use the same idioms as the functionality for skipping the tests. In particular, it will now work even if the source files exist, so we can do this during development too.
11 lines
400 B
Makefile
11 lines
400 B
Makefile
GLOBAL_CXXFLAGS += -Wno-deprecated-declarations -Werror=switch
|
|
# Allow switch-enum to be overridden for files that do not support it, usually because of dependency headers.
|
|
ERROR_SWITCH_ENUM = -Werror=switch-enum
|
|
|
|
$(foreach i, config.h $(wildcard src/lib*/*.hh), \
|
|
$(eval $(call install-file-in, $(i), $(includedir)/nix, 0644)))
|
|
|
|
$(GCH): src/libutil/util.hh config.h
|
|
|
|
GCH_CXXFLAGS = -I src/libutil
|