/usr/share/GNUstep/debian/config.mk is in gnustep-make 2.7.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # -*- makefile-gmake -*-
# Configuration variables describing the GNUstep paths
GS_USE_FHS := yes
GS_MAKE_DIR := /usr/share/GNUstep/Makefiles
include /usr/share/GNUstep/Makefiles/filesystem.make
export GNUSTEP_MAKEFILES := $(GS_MAKE_DIR)
export GNUSTEP_INSTALLATION_DOMAIN := SYSTEM
# Optimization is handled automatically by debhelper but
# gnustep-make's debug=yes adds -DDEBUG -fno-omit-frame-pointer.
ifndef optim
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
optim := debug=yes
endif
endif
|