1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
#
# nvidia-settings: A tool for configuring the NVIDIA X driver on Unix
# and Linux systems.
#
# Copyright (C) 2004 NVIDIA Corporation.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of Version 2 of the GNU General Public
# License as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See Version 2
# of the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the:
#
# Free Software Foundation, Inc.
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#
# This is the top level Makefile for the nvidia-settings utility
#
# Below are variables that users can override, either here or on the
# make commandline
#
# CC = gcc
# CFLAGS = -Wall
# PKG_CONFIG = pkg-config
# X11R6_DIR = /usr/X11R6
# default definitions; can be overwritten by users
SHELL = /bin/sh
INSTALL = install -m 755
BUILD_OS := $(shell uname)
ifndef CC
CC = gcc
endif
ifndef CFLAGS
CFLAGS = -Wall -fpedantic
endif
ifndef PKG_CONFIG
PKG_CONFIG = pkg-config
endif
ifndef X11R6_LIB_DIR
X11R6_LIB_DIR = /usr/X11R6/lib
endif
ifndef X11R6_INC_DIR
X11R6_INC_DIR = /usr/X11R6/include
endif
# the NVDEBUG environment variable controls whether we build debug or retail
ifeq ($(NVDEBUG),1)
STRIP = true
CFLAGS += -g -DDEBUG
else
ifndef STRIP
STRIP = strip
endif
CFLAGS += -O
endif
# default prefix
ifdef ROOT
prefix = $(ROOT)/usr
else
prefix = /usr/local
endif
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
X11R6_CFLAGS = -I $(X11R6_INC_DIR)
GTK_CFLAGS := $(shell $(PKG_CONFIG) --cflags gtk+-2.0)
GTK_LDFLAGS := $(shell $(PKG_CONFIG) --libs gtk+-2.0)
ifeq ($(BUILD_OS),SunOS)
LIBXV = -lXv
else
LIBXV = -Wl,-Bstatic -lXv -Wl,-Bdynamic
endif
X11R6_LIBS := -L $(X11R6_LIB_DIR) -Wl,-Bstatic -lXxf86vm -Wl,-Bdynamic $(LIBXV) -lX11 -lXext
XNVCTRL_LIB := src/libXNVCtrl/libXNVCtrl.a
CURDIR := $(shell pwd)
RELATIVE_SRCDIRS = \
doc \
src \
src/image_data \
src/xpm_data \
src/gtk+-2.x \
src/libXNVCtrl \
src/libXNVCtrlAttributes
SRCDIRS := $(addprefix $(CURDIR)/, $(RELATIVE_SRCDIRS))
INC_FLAGS := $(addprefix -I , $(RELATIVE_SRCDIRS))
ALL_CFLAGS = $(CFLAGS) $(X11R6_CFLAGS) $(GTK_CFLAGS) $(INC_FLAGS)
ALL_LDFLAGS = $(LDFLAGS) $(GTK_LDFLAGS) $(X11R6_LIBS)
CPPFLAGS = $(ALL_CFLAGS)
NVIDIA_SETTINGS = nvidia-settings
NVIDIA_SETTINGS_VERSION = 1.0
NVIDIA_SETTINGS_DISTDIR = $(NVIDIA_SETTINGS)-$(NVIDIA_SETTINGS_VERSION)
NVIDIA_SETTINGS_DISTDIR_DIRS := \
$(addprefix $(NVIDIA_SETTINGS_DISTDIR)/, $(RELATIVE_SRCDIRS))
STAMP_C = g_stamp.c
# Define the files in the SAMPLES directory
SAMPLES = Makefile README nv-control-dvc.c nv-control-info.c
# initialize SRC and EXTRA_DIST, then include each of the subdirectory
# Makefiles so that they can append to SRC and EXTRA_DIST
SRC =
EXTRA_DIST =
include $(patsubst %,%/Makefile.inc,$(RELATIVE_SRCDIRS))
# set VPATH
VPATH = $(RELATIVE_SRCDIRS)
# additional sources (eg: generated sources) can be appended to ALL_SRC
ALL_SRC = $(SRC) $(STAMP_C)
# OBJS and DEPS are constructed such that they are placed into special
# ".objs" and ".deps" subdirectories
OBJS_DIR = .objs
DEPS_DIR = .deps
OBJS := $(patsubst %.c,$(OBJS_DIR)/%.o,$(ALL_SRC))
DEPS := $(patsubst %.c,$(DEPS_DIR)/%.d,$(SRC))
# default echo within SunOS sh does not have -n option. Use /usr/ucb/echo instead.
ifeq ($(BUILD_OS),SunOS)
ECHO=/usr/ucb/echo
else
ECHO=echo
endif
# and now, the build rules:
default: all
all: $(NVIDIA_SETTINGS)
install: $(NVIDIA_SETTINGS)
$(STRIP) $<
$(INSTALL) $< $(bindir)/$<
$(OBJS_DIR)/%.o: %.c
@ mkdir -p $(OBJS_DIR)
$(CC) -c $(ALL_CFLAGS) $< -o $@
$(DEPS_DIR)/%.d: %.c
@ mkdir -p $(DEPS_DIR)
@ set -e; b=`basename $* .c` ; \
$(CC) -MM $(CPPFLAGS) $< \
| sed "s%\\($$b\\)\\.o[ :]*%$(OBJS_DIR)/\\1.o $(DEPS_DIR)/\\1.d : %g" > $@; \
[ -s $@ ] || rm -f $@
$(STAMP_C): $(filter-out $(OBJS_DIR)/$(STAMP_C:.c=.o), $(OBJS))
@ rm -f $@
@ $(ECHO) -n "const char NV_ID[] = \"nvidia id: " >> $@
@ $(ECHO) -n "$(NVIDIA_SETTINGS): " >> $@
@ $(ECHO) -n "version $(NVIDIA_SETTINGS_VERSION) " >> $@
@ $(ECHO) -n "($(shell whoami)@$(shell hostname)) " >> $@
@ echo "$(shell date)\";" >> $@
@ echo "const char *pNV_ID = NV_ID + 11;" >> $@
%.i : %.c
$(CC) $(CPPFLAGS) -E -dD $< | sed -e 's/^ $$//' > $@
indent -kr -nbbo -l96 -sob $@
$(NVIDIA_SETTINGS): $(OBJS) $(XNVCTRL_LIB)
$(CC) $(OBJS) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(XNVCTRL_LIB) -o $@
.PHONY: dist clean clobber
dist:
@ if [ -d $(NVIDIA_SETTINGS_DISTDIR) ]; then \
chmod 755 $(NVIDIA_SETTINGS_DISTDIR); \
fi
@ if [ -f $(NVIDIA_SETTINGS_DISTDIR).tar.gz ]; \
then chmod 644 $(NVIDIA_SETTINGS_DISTDIR).tar.gz; \
fi
rm -rf $(NVIDIA_SETTINGS_DISTDIR) $(NVIDIA_SETTINGS_DISTDIR).tar.gz
mkdir -p $(NVIDIA_SETTINGS_DISTDIR_DIRS)
@ for i in $(SRC); do \
b=`find . -name $$i`; \
if [ $$b ]; then \
cp $$b $(NVIDIA_SETTINGS_DISTDIR)/$$b ; \
chmod 644 $(NVIDIA_SETTINGS_DISTDIR)/$$b ; \
fi ; \
done
@ for i in $(EXTRA_DIST); do \
b=`find . -name $$i`; \
if [ $$b ]; then \
cp $$b $(NVIDIA_SETTINGS_DISTDIR)/$$b ; \
chmod 644 $(NVIDIA_SETTINGS_DISTDIR)/$$b ; \
fi ; \
done
mkdir -p $(NVIDIA_SETTINGS_DISTDIR)/samples
@ for i in $(SAMPLES); do \
cp samples/$$i $(NVIDIA_SETTINGS_DISTDIR)/samples/ ; \
done
@ for i in COPYING Makefile doc/Makefile.inc `find src -name Makefile.inc`; do \
cp $$i $(NVIDIA_SETTINGS_DISTDIR)/$$i ; \
chmod 644 $(NVIDIA_SETTINGS_DISTDIR)/$$i ; \
done
tar czf $(NVIDIA_SETTINGS_DISTDIR).tar.gz $(NVIDIA_SETTINGS_DISTDIR)
rm -rf $(NVIDIA_SETTINGS_DISTDIR)
clean clobber:
rm -rf $(OBJS_DIR) $(DEPS_DIR) $(STAMP_C) $(NVIDIA_SETTINGS)
find . -name "*~" -exec rm -f \{\} \;
-include $(DEPS)
|