-
Notifications
You must be signed in to change notification settings - Fork 11
/
buildrules
308 lines (264 loc) · 13 KB
/
buildrules
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# These are some standard rules common to all Makefiles that build
# libraries.
# Turn off implicit rules, they are not needed here.
MAKEFLAGS = -r
include $(top_srcdir)/configvars
include $(top_srcdir)/rules
AM_V_CC = $(am__v_CC_$(V))
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
am__v_CC_0 = @echo " CC " $@;
AM_V_AR = $(am__v_AR_$(V))
am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY))
am__v_AR_0 = @echo " AR " $@;
AM_V_RANLIB = $(am__v_RANLIB_$(V))
am__v_RANLIB_ = $(am__v_RANLIB_$(AM_DEFAULT_VERBOSITY))
am__v_RANLIB_0 = @echo " RANLIB" $@;
AM_V_STRIP = $(am__v_STRIP_$(V))
am__v_STRIP_ = $(am__v_STRIP_$(AM_DEFAULT_VERBOSITY))
am__v_STRIP_0 = @echo " STRIP " $@;
# This is the slow part of the Makefiles. Exclude it if we build
# binary distributions.
ifndef top_distdir
# qualifier is _p, _g, or empty
libc := libc$(qualifier).a
libiio := libiio$(qualifier).a
librpcsvc := librpcsvc$(qualifier).a
LIBS := $(libc) $(libiio) $(librpcsvc)
ifeq ($(USE_WEAK_SYMBOLS), yes)
ifdef HAVE_ASM_WEAKEXT_DIRECTIVE
CFLAGS += -DHAVE_ASM_WEAKEXT_DIRECTIVE
else
CFLAGS += -DHAVE_ASM_WEAK_DIRECTIVE
endif
endif
DIRSTEM=$(notdir $(<D))
INCLUDES = -nostdinc -I$(<D) -I$(top_srcdir) -I$(top_srcdir)/include \
-I$(top_srcdir)/mintlib -I$(top_srcdir)/stdlib -I$(shell cat $(top_srcdir)/includepath)
DEFS += -DHAVE_CONFIG_H -D_LIBC -D_REENTRANT
COMPILE = $(filter-out $(NOCFLAGS-$(<F)), $(filter-out $(nocflags),\
$(CC) $(WARN) $(cflags) $(CFLAGS) $(CFLAGS-$(<F)) $(CFLAGS-$(DIRSTEM))) \
$(INCLUDES) $(DEFS) $(DEFS-$(<F)) $(DEFS-$(DIRSTEM)))
-include $(top_srcdir)/CFILES
argpdir := $(top_srcdir)/argp
cryptdir := $(top_srcdir)/crypt
direntdir := $(top_srcdir)/dirent
gmpdir := $(top_srcdir)/gmp
logindir := $(top_srcdir)/login
mintlibdir := $(top_srcdir)/mintlib
miscdir := $(top_srcdir)/misc
mbytedir := $(top_srcdir)/multibyte
posixdir := $(top_srcdir)/posix
pwdgrpdir := $(top_srcdir)/pwdgrp
shadowdir := $(top_srcdir)/shadow
signaldir := $(top_srcdir)/signal
socketdir := $(top_srcdir)/socket
startupdir := $(top_srcdir)/startup
stdiiodir := $(top_srcdir)/stdiio
stdiodir := $(top_srcdir)/stdio
stdlibdir := $(top_srcdir)/stdlib
stringdir := $(top_srcdir)/string
sunrpcdir := $(top_srcdir)/sunrpc
syscalldir := $(top_srcdir)/syscall
sysvipcdir := $(top_srcdir)/sysvipc
termiosdir := $(top_srcdir)/termios
timedir := $(top_srcdir)/time
tzdir := $(top_srcdir)/tz
unixdir := $(top_srcdir)/unix
srcdirs := $(argpdir) $(cryptdir) $(direntdir) $(gmpdir) $(logindir) $(mintlibdir) \
$(miscdir) $(mbytedir) $(posixdir) $(pwdgrpdir) $(shadowdir) $(signaldir) $(socketdir) \
$(stdiiodir) $(stdiodir) $(stdlibdir) $(stringdir) $(sunrpcdir) \
$(syscalldir) $(sysvipcdir) $(termiosdir) $(timedir) $(tzdir) $(unixdir)
ARGPSRCS := $(addprefix $(argpdir)/, $(ARGPCFILES))
CRYPTSRCS := $(addprefix $(cryptdir)/, $(CRYPTCFILES))
DIRENTSRCS := $(addprefix $(direntdir)/, $(DIRENTCFILES))
GMPSRCS := $(addprefix $(gmpdir)/, $(GMPCFILES))
LOGINSRCS := $(addprefix $(logindir)/, $(LOGINCFILES))
MINTLIBSRCS := $(addprefix $(mintlibdir)/, $(MINTLIBCFILES))
MISCSRCS := $(addprefix $(miscdir)/, $(MISCCFILES))
MBYTESRCS := $(addprefix $(mbytedir)/, $(MBYTECFILES))
POSIXSRCS := $(addprefix $(posixdir)/, $(POSIXCFILES))
PWDGRPSRCS := $(addprefix $(pwdgrpdir)/, $(PWDGRPCFILES))
RPCSVCSRCS := $(addprefix $(sunrpcdir)/, $(RPCSVCCFILES))
SHADOWSRCS := $(addprefix $(shadowdir)/, $(SHADOWCFILES))
SIGNALSRCS := $(addprefix $(signaldir)/, $(SIGNALCFILES))
SOCKETSRCS := $(addprefix $(socketdir)/, $(SOCKETCFILES))
STDIIOSRCS := $(addprefix $(stdiiodir)/, $(STDIIOCFILES))
STDIOSRCS := $(addprefix $(stdiodir)/, $(STDIOCFILES))
STDLIBSRCS := $(addprefix $(stdlibdir)/, $(STDLIBCFILES))
STRINGSRCS := $(addprefix $(stringdir)/, $(STRINGCFILES))
SUNRPCSRCS := $(addprefix $(sunrpcdir)/, $(SUNRPCCFILES))
SYSCALLSRCS := $(addprefix $(syscalldir)/, $(SYSCALLCFILES))
SYSVIPCSRCS := $(addprefix $(sysvipcdir)/, $(SYSVIPCCFILES))
TERMIOSSRCS := $(addprefix $(termiosdir)/, $(TERMIOSCFILES))
TIMESRCS := $(addprefix $(timedir)/, $(TIMECFILES))
TZSRCS := $(addprefix $(tzdir)/, $(TZCFILES))
UNIXSRCS := $(addprefix $(unixdir)/, $(UNIXCFILES))
SRCS := $(ARGPSRCS) $(CRYPTSRCS) $(DIRENTSRCS) $(GMPSRCS) $(LOGINSRCS) $(MINTLIBSRCS) \
$(MISCSRCS) $(MBYTESRCS) $(POSIXSRCS) $(PWDGRPSRCS) $(RPCSVCSRCS) $(SHADOWSRCS) \
$(SIGNALSRCS) $(SOCKETSRCS) $(STDIOSRCS) $(STDIOSRCS) $(STDLIBSRCS) \
$(STRINGSRCS) $(SUNRPCSRCS) $(SYSCALLSRCS) $(SYSVIPCSRCS) $(TERMIOSSRCS) \
$(TIMESRCS) $(TZSRCS) $(UNIXSRCS)
CFLAGS-crtinit.c = -fno-omit-frame-pointer --no-profile
CFLAGS-gmon.c = -fno-omit-frame-pointer --no-profile
CFLAGS-mcount.c = -fno-omit-frame-pointer --no-profile
CFLAGS-profil-freq.c = -fno-omit-frame-pointer --no-profile
CFLAGS-profil-posix.c = -fno-omit-frame-pointer --no-profile
#NOCFLAGS-linea.c = -O2 -O
#CFLAGS-linea.c = -fno-omit-frame-pointer --no-profile
#DEFS-vfscanf.c = -DNO_BUG_IN_ISO_C_CORRIGENDUM_1
CFLAGS-nanosleep.c = -fwrapv
CFLAGS-vfprintf.c = -Wno-uninitialized
CFLAGS-vfwprintf.c = -Wno-uninitialized
CFLAGS-ivfprintf.c = -Wno-uninitialized
DEFS-ident.c = -DVERSION=\"$(VERSION)\"
DEFS-ident_sock.c = -DVERSION=\"$(VERSION)\"
CFLAGS-crypt = -O3 -fexpensive-optimizations
# This is necessary to avoid optimizing the sequence of malloc/memset
# to a call to calloc in its own implementation
CFLAGS-calloc.c = -fno-builtin
# These source come from ... you know where
DEFS-xbootparam_prot.c = -Wno-unused
DEFS-xmount.c = -Wno-unused
DEFS-xrex.c = -Wno-unused
DEFS-xrusers.c = -Wno-unused
DEFS-xyppasswd.c = -Wno-unused
DEFS-xkey_prot.c = -Wno-unused
DEFS-xnfs_prot.c = -Wno-unused
DEFS-xrquota.c = -Wno-unused
DEFS-xsm_inter.c = -Wno-unused
DEFS-xklm_prot.c = -Wno-unused
DEFS-xnlm_prot.c= -Wno-unused
DEFS-xrstat.c = -Wno-unused
DEFS-xspray.c= -Wno-unused
CRT0OBJS := crt0.o gcrt0.o
ARGPOBJS := $(addsuffix .o, $(basename $(notdir $(ARGPSRCS))))
CRYPTOBJS := $(addsuffix .o, $(basename $(notdir $(CRYPTSRCS))))
DIRENTOBJS := $(addsuffix .o, $(basename $(notdir $(DIRENTSRCS))))
GMPOBJS := $(addsuffix .o, $(basename $(notdir $(GMPSRCS))))
LOGINOBJS := $(addsuffix .o, $(basename $(notdir $(LOGINSRCS))))
MINTLIBOBJS := $(addsuffix .o, $(basename $(notdir $(MINTLIBSRCS))))
MISCOBJS := $(addsuffix .o, $(basename $(notdir $(MISCSRCS))))
MBYTEOBJS := $(addsuffix .o, $(basename $(notdir $(MBYTESRCS))))
POSIXOBJS := $(addsuffix .o, $(basename $(notdir $(POSIXSRCS))))
PWDGRPOBJS := $(addsuffix .o, $(basename $(notdir $(PWDGRPSRCS))))
RPCSVCOBJS := $(addsuffix .o, $(basename $(notdir $(RPCSVCSRCS))))
SHADOWOBJS := $(addsuffix .o, $(basename $(notdir $(SHADOWSRCS))))
SIGNALOBJS := $(addsuffix .o, $(basename $(notdir $(SIGNALSRCS))))
SOCKETOBJS := $(addsuffix .o, $(basename $(notdir $(SOCKETSRCS))))
STDIIOOBJS := $(addsuffix .o, $(basename $(notdir $(STDIIOSRCS))))
STDIOOBJS := $(addsuffix .o, $(basename $(notdir $(STDIOSRCS))))
STDLIBOBJS := $(addsuffix .o, $(basename $(notdir $(STDLIBSRCS))))
STRINGOBJS := $(addsuffix .o, $(basename $(notdir $(STRINGSRCS))))
SUNRPCOBJS := $(addsuffix .o, $(basename $(notdir $(SUNRPCSRCS))))
SYSCALLOBJS := $(addsuffix .o, $(basename $(notdir $(SYSCALLSRCS))))
SYSVIPCOBJS := $(addsuffix .o, $(basename $(notdir $(SYSVIPCSRCS))))
TERMIOSOBJS := $(addsuffix .o, $(basename $(notdir $(TERMIOSSRCS))))
TIMEOBJS := $(addsuffix .o, $(basename $(notdir $(TIMESRCS))))
TZOBJS := $(addsuffix .o, $(basename $(notdir $(TZSRCS))))
UNIXOBJS := $(addsuffix .o, $(basename $(notdir $(UNIXSRCS))))
OBJS := $(CRT0OBJS) $(ARGPOBJS) $(CRYPTOBJS) $(DIRENTOBJS) $(GMPOBJS) $(LOGINOBJS) $(MINTLIBOBJS) \
$(MISCOBJS) $(MBYTEOBJS) $(POSIXOBJS) $(PWDGRPOBJS) $(RPCSVCOBJS) $(SHADOWOBJS) \
$(SIGNALOBJS) $(SOCKETOBJS) $(STDIIOOBJS) $(STDIOOBJS) $(STDLIBOBJS) \
$(STRINGOBJS) $(SUNRPCOBJS) $(SYSCALLOBJS) $(SYSVIPCOBJS) $(TERMIOSOBJS) \
$(TIMEOBJS) $(TZOBJS) $(UNIXOBJS)
LIBCOBJS := $(ARGPOBJS) $(CRYPTOBJS) $(DIRENTOBJS) $(GMPOBJS) $(LOGINOBJS) $(MINTLIBOBJS) \
$(MISCOBJS) $(MBYTEOBJS) $(POSIXOBJS) $(PWDGRPOBJS) $(SHADOWOBJS) $(SIGNALOBJS) \
$(STDIOOBJS) $(STDLIBOBJS) $(STRINGOBJS) $(SYSCALLOBJS) $(SYSVIPCOBJS) \
$(TERMIOSOBJS) $(TIMEOBJS) $(TZOBJS) $(UNIXOBJS) $(SUNRPCOBJS) $(SOCKETOBJS)
# All modules that reference vfprintf or vfscanf should be listed here,
# as well as all modules that reference modules in this list
LIBIIO_ADDOBJS = err.o error.o doprnt.o dprintf.o fscanf.o scanf.o vscanf.o \
vsscanf.o obstream.o printf.o vasprintf.o vdprintf.o vprintf.o vsnprintf.o \
vsprintf.o sscanf.o fprintf.o fwprintf.o snprintf.o sprintf.o swprintf.o \
vfwprintf.o vswprintf.o vwprintf.o wprintf.o
DEP_FILES := $(addprefix .deps/,$(patsubst %.o,%.P,$(OBJS)))
# These are automatically remade, no need for make to worry about
# them.
.PHONY : $(DEP_FILES)
endif # not top_distdir.
all-here: $(top_srcdir)/CFILES $(CRT0OBJS) $(LIBS)
include $(top_srcdir)/bindist
install-include:
install-man:
uninstall-include:
uninstall-man:
ifndef top_distdir # Not needed when making distributions.
# Copy SRCFILES from source directory here.
$(top_srcdir)/CFILES: $(argpdir)/SRCFILES $(cryptdir)/SRCFILES $(direntdir)/SRCFILES \
$(gmpdir)/SRCFILES $(mbytedir)/SRCFILES $(logindir)/SRCFILES $(mintlibdir)/SRCFILES \
$(miscdir)/SRCFILES $($(posixdir)/SRCFILES $(pwdgrpdir)/SRCFILES \
$(shadowdir)/SRCFILES $(signaldir)/SRCFILES $(socketdir)/SRCFILES \
$(stdiiodir)/SRCFILES $(stdiodir)/SRCFILES $(stdlibdir)/SRCFILES \
$(stringdir)/SRCFILES $(sunrpcdir)/SRCFILES $(sunrpcdir)/RPCSVCCFILES \
$(syscalldir)/SRCFILES $(sysvipcdir)/SRCFILES $(termiosdir)/SRCFILES \
$(timedir)/SRCFILES $(tzdir)/SRCFILES $(unixdir)/SRCFILES
rm -f $@
ifneq (clean,$(MAKECMDGOALS))
echo "# This file is a generated secondary file. Do not edit." >$@
sed -e 's,^SRCFILES *=,ARGPCFILES =,g' $(argpdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,CRYPTCFILES =,g' $(cryptdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,DIRENTCFILES =,g' $(direntdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,GMPCFILES =,g' $(gmpdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,LOGINCFILES =,g' $(logindir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,MINTLIBCFILES =,g' $(mintlibdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,MISCCFILES =,g' $(miscdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,MBYTECFILES =,g' $(mbytedir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,POSIXCFILES =,g' $(posixdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,PWDGRPCFILES =,g' $(pwdgrpdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,SHADOWCFILES =,g' $(shadowdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,SIGNALCFILES =,g' $(signaldir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,SOCKETCFILES =,g' $(socketdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,STDIIOCFILES =,g' $(stdiiodir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,STDIOCFILES =,g' $(stdiodir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,STDLIBCFILES =,g' $(stdlibdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,STRINGCFILES =,g' $(stringdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,SUNRPCCFILES =,g' $(sunrpcdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,RPCSVCCFILES =,g' $(sunrpcdir)/RPCSVCCFILES >> $@
sed -e 's,^SRCFILES *=,RPCGENCFILES =,g' $(sunrpcdir)/RPCGENCFILES >> $@
sed -e 's,^SRCFILES *=,RPCINFOCFILES =,g' $(sunrpcdir)/RPCINFOCFILES >> $@
sed -e 's,^SRCFILES *=,SYSCALLCFILES =,g' $(syscalldir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,SYSVIPCCFILES =,g' $(sysvipcdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,TERMIOSCFILES =,g' $(termiosdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,TIMECFILES =,g' $(timedir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,TZCFILES =,g' $(tzdir)/SRCFILES >>$@
sed -e 's,^SRCFILES *=,UNIXCFILES =,g' $(unixdir)/SRCFILES >>$@
endif
vpath %.c $(srcdirs)
vpath %.s $(srcdirs)
vpath %.S $(srcdirs)
.SUFFIXES:
.SUFFIXES: .c .o .S .s
.c.o:
$(AM_V_CC)$(COMPILE) -Wp,-MD,.deps/$(@:.o=.P) -c $< -o $@
.S.o:
$(AM_V_CC)$(COMPILE) -Wp,-MD,.deps/$(@:.o=.P) -c $< -o $@
.s.o:
$(AM_V_CC)$(COMPILE) -Wp,-MD,.deps/$(@:.o=.P) -c $< -o $@
crt0.o: $(startupdir)/crt0.S
$(AM_V_CC)$(CC) $(WARN) $(cflags) $(CFLAGS) -nostdinc -I$(top_srcdir)/include -I$(top_srcdir)/mintlib -c $< -o $@
gcrt0.o: $(startupdir)/crt0.S
$(AM_V_CC)$(CC) $(WARN) $(cflags) $(CFLAGS) -nostdinc -I$(top_srcdir)/include -I$(top_srcdir)/mintlib -DGCRT0 -c $< -o $@
# Finally, build the libs.
$(libc): $(LIBCOBJS)
@rm -f $@
$(AM_V_AR)$(AR) cru $@ $(LIBCOBJS)
if test "$(qualifier)" = ""; then $(AM_V_STRIP)$(STRIP) -S -X -w -N '.L[0-9]*' $@; fi
$(AM_V_RANLIB)$(RANLIB) $@
$(libiio): $(STDIIOOBJS) $(LIBIIO_ADDOBJS)
@rm -f $@
$(AM_V_AR)$(AR) cru $@ $(STDIIOOBJS) $(LIBIIO_ADDOBJS)
if test "$(qualifier)" = ""; then $(AM_V_STRIP)$(STRIP) -S -X -w -N '.L[0-9]*' $@; fi
$(AM_V_RANLIB)$(RANLIB) $@
$(librpcsvc): $(RPCSVCOBJS)
@rm -f $@
$(AM_V_AR)$(AR) cru $@ $(RPCSVCOBJS)
if test "$(qualifier)" = ""; then $(AM_V_STRIP)$(STRIP) -S -X -w -N '.L[0-9]*' $@; fi
$(AM_V_RANLIB)$(RANLIB) $@
$(LIBCOBJS) $(LIBIIO_ADDOBJS) $(RPCSVCOBJS): $(top_srcdir)/includepath
$(top_srcdir)/include/linker.h: $(top_srcdir)/include/linker.h.in \
$(top_srcdir)/configvars
(cd $(top_srcdir)/include && $(MAKE) linker.h)
.SECONDARY : $(DEP_FILES) $(SRCFILES)
-include $(DEP_FILES) /dev/null
endif # not top_distdir.
include $(top_srcdir)/phony