|
Lines 1-5
Link Here
|
| 1 |
--- code/unix/Makefile.orig Thu May 25 16:59:37 2006 |
1 |
--- ./code/unix/Makefile.orig Wed May 31 18:55:11 2006 |
| 2 |
+++ code/unix/Makefile Thu May 25 17:04:46 2006 |
2 |
+++ ./code/unix/Makefile Wed May 31 18:55:13 2006 |
| 3 |
@@ -19,6 +19,7 @@ |
3 |
@@ -19,6 +19,7 @@ |
| 4 |
|
4 |
|
| 5 |
PLATFORM=$(shell uname|tr A-Z a-z) |
5 |
PLATFORM=$(shell uname|tr A-Z a-z) |
|
Lines 67-74
Link Here
|
| 67 |
GLLDFLAGS=-L/usr/X11R6/lib -lX11 -lXext -lXxf86dga -lXxf86vm |
67 |
GLLDFLAGS=-L/usr/X11R6/lib -lX11 -lXext -lXxf86dga -lXxf86vm |
| 68 |
|
68 |
|
| 69 |
ifeq ($(ARCH),axp) |
69 |
ifeq ($(ARCH),axp) |
| 70 |
@@ -199,31 +200,27 @@ |
70 |
@@ -197,33 +198,35 @@ |
| 71 |
|
71 |
|
|
|
72 |
ifeq ($(PLATFORM),freebsd) |
| 73 |
|
| 74 |
+ifeq ($(ARCH),powerpc) |
| 75 |
+ARCH=ppc |
| 76 |
+endif |
| 77 |
+ |
| 72 |
GLIBC= #libc is irrelevant |
78 |
GLIBC= #libc is irrelevant |
| 73 |
|
79 |
|
| 74 |
-ifneq (,$(findstring alpha,$(shell uname -m))) |
80 |
-ifneq (,$(findstring alpha,$(shell uname -m))) |
|
Lines 108-114
Link Here
|
| 108 |
-CC=$(shell if [ -f $(NEWPGCC) ]; then echo $(NEWPGCC); else echo pgcc; fi ) |
114 |
-CC=$(shell if [ -f $(NEWPGCC) ]; then echo $(NEWPGCC); else echo pgcc; fi ) |
| 109 |
-RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O6 -mcpu=pentiumpro -march=pentium -fomit-frame-pointer -pipe -ffast-math -malign-loops=2 -malign-jumps=2 -malign-functions=2 -fno-strict-aliasing - fstrength-reduce |
115 |
-RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O6 -mcpu=pentiumpro -march=pentium -fomit-frame-pointer -pipe -ffast-math -malign-loops=2 -malign-jumps=2 -malign-functions=2 -fno-strict-aliasing - fstrength-reduce |
| 110 |
+ifneq ($(ARCH),i386) |
116 |
+ifneq ($(ARCH),i386) |
|
|
117 |
+ ifneq ($(ARCH),ppc) |
| 111 |
+DLL_ONLY=true |
118 |
+DLL_ONLY=true |
|
|
119 |
+ endif |
| 112 |
+endif |
120 |
+endif |
| 113 |
+ |
121 |
+ |
| 114 |
+ifeq ($(DLL_ONLY),true) |
122 |
+ifeq ($(DLL_ONLY),true) |
|
Lines 116-122
Link Here
|
| 116 |
endif |
124 |
endif |
| 117 |
|
125 |
|
| 118 |
LIBEXT=a |
126 |
LIBEXT=a |
| 119 |
@@ -235,25 +232,37 @@ |
127 |
@@ -235,25 +238,37 @@ |
| 120 |
ARFLAGS=ar rv |
128 |
ARFLAGS=ar rv |
| 121 |
RANLIB=ranlib |
129 |
RANLIB=ranlib |
| 122 |
|
130 |
|
|
Lines 169-175
Link Here
|
| 169 |
endif |
177 |
endif |
| 170 |
|
178 |
|
| 171 |
else # ifeq freebsd |
179 |
else # ifeq freebsd |
| 172 |
@@ -283,7 +292,7 @@ |
180 |
@@ -283,7 +298,7 @@ |
| 173 |
ARFLAGS=ar rv |
181 |
ARFLAGS=ar rv |
| 174 |
RANLIB=ranlib |
182 |
RANLIB=ranlib |
| 175 |
|
183 |
|
|
Lines 178-184
Link Here
|
| 178 |
GLLDFLAGS=-L/usr/X11/lib -lGL -lX11 -lXext -lm |
186 |
GLLDFLAGS=-L/usr/X11/lib -lGL -lX11 -lXext -lm |
| 179 |
|
187 |
|
| 180 |
TARGETS=$(B)/sgiquake3 \ |
188 |
TARGETS=$(B)/sgiquake3 \ |
| 181 |
@@ -310,9 +319,9 @@ |
189 |
@@ -310,9 +325,9 @@ |
| 182 |
RANLIB=ranlib |
190 |
RANLIB=ranlib |
| 183 |
|
191 |
|
| 184 |
ifeq ($(PLATFORM),freebsd) |
192 |
ifeq ($(PLATFORM),freebsd) |
|
Lines 190-196
Link Here
|
| 190 |
endif # ifeq freebsd |
198 |
endif # ifeq freebsd |
| 191 |
|
199 |
|
| 192 |
TARGETS=\ |
200 |
TARGETS=\ |
| 193 |
@@ -348,7 +357,7 @@ |
201 |
@@ -348,7 +363,7 @@ |
| 194 |
$(MAKE) targets B=$(BR) CFLAGS="$(RELEASE_CFLAGS)" |
202 |
$(MAKE) targets B=$(BR) CFLAGS="$(RELEASE_CFLAGS)" |
| 195 |
|
203 |
|
| 196 |
#Build both debug and release builds |
204 |
#Build both debug and release builds |
|
Lines 199-205
Link Here
|
| 199 |
|
207 |
|
| 200 |
targets:makedirs $(TARGETS) |
208 |
targets:makedirs $(TARGETS) |
| 201 |
|
209 |
|
| 202 |
@@ -516,20 +525,6 @@ |
210 |
@@ -516,20 +531,6 @@ |
| 203 |
$(B)/client/unix_net.o \ |
211 |
$(B)/client/unix_net.o \ |
| 204 |
$(B)/client/unix_shared.o \ |
212 |
$(B)/client/unix_shared.o \ |
| 205 |
\ |
213 |
\ |
|
Lines 220-226
Link Here
|
| 220 |
# $(B)/client/q_parse.o \ |
228 |
# $(B)/client/q_parse.o \ |
| 221 |
# $(B)/client/math_quaternion.o \ |
229 |
# $(B)/client/math_quaternion.o \ |
| 222 |
# $(B)/client/util_str.o \ |
230 |
# $(B)/client/util_str.o \ |
| 223 |
@@ -541,7 +536,9 @@ |
231 |
@@ -541,7 +542,9 @@ |
| 224 |
# $(B)/client/q_shared.o \ |
232 |
# $(B)/client/q_shared.o \ |
| 225 |
|
233 |
|
| 226 |
ifeq ($(ARCH),i386) |
234 |
ifeq ($(ARCH),i386) |
|
Lines 231-242
Link Here
|
| 231 |
endif |
239 |
endif |
| 232 |
|
240 |
|
| 233 |
ifeq ($(ARCH),ppc) |
241 |
ifeq ($(ARCH),ppc) |
| 234 |
@@ -559,10 +556,24 @@ |
242 |
@@ -559,10 +562,24 @@ |
| 235 |
$(B)/client/linux_qgl.o \ |
243 |
$(B)/client/linux_qgl.o \ |
| 236 |
$(B)/client/linux_glimp.o \ |
244 |
$(B)/client/linux_glimp.o \ |
| 237 |
$(B)/client/linux_snd.o \ |
245 |
$(B)/client/linux_snd.o \ |
| 238 |
+ $(B)/client/linux_signals.o \ |
246 |
+ $(B)/client/linux_signals.o \ |
| 239 |
+ $(B)/client/snd_mixa.o \ |
247 |
$(B)/client/snd_mixa.o \ |
|
|
248 |
- $(B)/client/matha.o \ |
| 249 |
- $(B)/client/ftol.o \ |
| 250 |
- $(B)/client/snapvector.o |
| 240 |
+ $(B)/client/matha.o |
251 |
+ $(B)/client/matha.o |
| 241 |
+ |
252 |
+ |
| 242 |
+ Q3POBJ_SMP=\ |
253 |
+ Q3POBJ_SMP=\ |
|
Lines 245-254
Link Here
|
| 245 |
+ $(B)/client/linux_glimp_smp.o \ |
256 |
+ $(B)/client/linux_glimp_smp.o \ |
| 246 |
+ $(B)/client/linux_snd.o \ |
257 |
+ $(B)/client/linux_snd.o \ |
| 247 |
+ $(B)/client/linux_signals.o \ |
258 |
+ $(B)/client/linux_signals.o \ |
| 248 |
$(B)/client/snd_mixa.o \ |
259 |
+ $(B)/client/snd_mixa.o \ |
| 249 |
- $(B)/client/matha.o \ |
|
|
| 250 |
- $(B)/client/ftol.o \ |
| 251 |
- $(B)/client/snapvector.o |
| 252 |
+ $(B)/client/matha.o |
260 |
+ $(B)/client/matha.o |
| 253 |
+ |
261 |
+ |
| 254 |
+ ifeq ($(ARCH),i386) |
262 |
+ ifeq ($(ARCH),i386) |
|
Lines 259-265
Link Here
|
| 259 |
else |
267 |
else |
| 260 |
ifeq ($(PLATFORM),irix) |
268 |
ifeq ($(PLATFORM),irix) |
| 261 |
Q3POBJ=\ |
269 |
Q3POBJ=\ |
| 262 |
@@ -578,7 +589,6 @@ |
270 |
@@ -578,7 +595,6 @@ |
| 263 |
$(B)/client/linux_common.o \ |
271 |
$(B)/client/linux_common.o \ |
| 264 |
$(B)/client/linux_qgl.o \ |
272 |
$(B)/client/linux_qgl.o \ |
| 265 |
$(B)/client/linux_glimp.o \ |
273 |
$(B)/client/linux_glimp.o \ |
|
Lines 267-273
Link Here
|
| 267 |
$(B)/client/linux_snd.o \ |
275 |
$(B)/client/linux_snd.o \ |
| 268 |
$(B)/client/snd_mixa.o \ |
276 |
$(B)/client/snd_mixa.o \ |
| 269 |
$(B)/client/matha.o \ |
277 |
$(B)/client/matha.o \ |
| 270 |
@@ -587,7 +597,6 @@ |
278 |
@@ -587,7 +603,6 @@ |
| 271 |
$(B)/client/linux_common.o \ |
279 |
$(B)/client/linux_common.o \ |
| 272 |
$(B)/client/linux_qgl.o \ |
280 |
$(B)/client/linux_qgl.o \ |
| 273 |
$(B)/client/linux_glimp_smp.o \ |
281 |
$(B)/client/linux_glimp_smp.o \ |
|
Lines 275-281
Link Here
|
| 275 |
$(B)/client/linux_snd.o \ |
283 |
$(B)/client/linux_snd.o \ |
| 276 |
$(B)/client/snd_mixa.o \ |
284 |
$(B)/client/snd_mixa.o \ |
| 277 |
$(B)/client/matha.o |
285 |
$(B)/client/matha.o |
| 278 |
@@ -602,12 +611,12 @@ |
286 |
@@ -602,12 +617,12 @@ |
| 279 |
endif #FreeBSD |
287 |
endif #FreeBSD |
| 280 |
endif #IRIX |
288 |
endif #IRIX |
| 281 |
|
289 |
|
|
Lines 290-296
Link Here
|
| 290 |
$(CC) -o $@ $(Q3OBJ) $(Q3POBJ_SMP) $(GLLDFLAGS) \ |
298 |
$(CC) -o $@ $(Q3OBJ) $(Q3POBJ_SMP) $(GLLDFLAGS) \ |
| 291 |
$(THREAD_LDFLAGS) $(LDFLAGS) |
299 |
$(THREAD_LDFLAGS) $(LDFLAGS) |
| 292 |
|
300 |
|
| 293 |
@@ -754,10 +763,10 @@ |
301 |
@@ -754,10 +769,10 @@ |
| 294 |
$(B)/client/linux_common.o : $(UDIR)/linux_common.c; $(DO_CC) |
302 |
$(B)/client/linux_common.o : $(UDIR)/linux_common.c; $(DO_CC) |
| 295 |
$(B)/client/linux_glimp.o : $(UDIR)/linux_glimp.c; $(DO_CC) $(GL_CFLAGS) |
303 |
$(B)/client/linux_glimp.o : $(UDIR)/linux_glimp.c; $(DO_CC) $(GL_CFLAGS) |
| 296 |
$(B)/client/linux_glimp_smp.o : $(UDIR)/linux_glimp.c; $(DO_SMP_CC) $(GL_CFLAGS) |
304 |
$(B)/client/linux_glimp_smp.o : $(UDIR)/linux_glimp.c; $(DO_SMP_CC) $(GL_CFLAGS) |
|
Lines 302-308
Link Here
|
| 302 |
$(B)/client/snd_mixa.o : $(UDIR)/snd_mixa.s; $(DO_AS) |
310 |
$(B)/client/snd_mixa.o : $(UDIR)/snd_mixa.s; $(DO_AS) |
| 303 |
$(B)/client/matha.o : $(UDIR)/matha.s; $(DO_AS) |
311 |
$(B)/client/matha.o : $(UDIR)/matha.s; $(DO_AS) |
| 304 |
|
312 |
|
| 305 |
@@ -912,13 +921,17 @@ |
313 |
@@ -912,13 +927,17 @@ |
| 306 |
$(B)/ded/unix_main.o \ |
314 |
$(B)/ded/unix_main.o \ |
| 307 |
$(B)/ded/unix_net.o \ |
315 |
$(B)/ded/unix_net.o \ |
| 308 |
$(B)/ded/unix_shared.o \ |
316 |
$(B)/ded/unix_shared.o \ |
|
Lines 321-327
Link Here
|
| 321 |
endif |
329 |
endif |
| 322 |
|
330 |
|
| 323 |
ifeq ($(ARCH),ppc) |
331 |
ifeq ($(ARCH),ppc) |
| 324 |
@@ -927,7 +940,7 @@ |
332 |
@@ -927,7 +946,7 @@ |
| 325 |
endif |
333 |
endif |
| 326 |
endif |
334 |
endif |
| 327 |
|
335 |
|
|
Lines 330-336
Link Here
|
| 330 |
$(CC) -o $@ $(Q3DOBJ) $(LDFLAGS) |
338 |
$(CC) -o $@ $(Q3DOBJ) $(LDFLAGS) |
| 331 |
|
339 |
|
| 332 |
$(B)/ded/sv_bot.o : $(SDIR)/sv_bot.c; $(DO_DED_CC) |
340 |
$(B)/ded/sv_bot.o : $(SDIR)/sv_bot.c; $(DO_DED_CC) |
| 333 |
@@ -988,6 +1001,7 @@ |
341 |
@@ -988,6 +1007,7 @@ |
| 334 |
$(B)/ded/unix_main.o : $(UDIR)/unix_main.c; $(DO_DED_CC) |
342 |
$(B)/ded/unix_main.o : $(UDIR)/unix_main.c; $(DO_DED_CC) |
| 335 |
$(B)/ded/unix_net.o : $(UDIR)/unix_net.c; $(DO_DED_CC) |
343 |
$(B)/ded/unix_net.o : $(UDIR)/unix_net.c; $(DO_DED_CC) |
| 336 |
$(B)/ded/unix_shared.o : $(UDIR)/unix_shared.c; $(DO_DED_CC) |
344 |
$(B)/ded/unix_shared.o : $(UDIR)/unix_shared.c; $(DO_DED_CC) |
|
Lines 338-344
Link Here
|
| 338 |
$(B)/ded/null_client.o : $(NDIR)/null_client.c; $(DO_DED_CC) |
346 |
$(B)/ded/null_client.o : $(NDIR)/null_client.c; $(DO_DED_CC) |
| 339 |
$(B)/ded/null_input.o : $(NDIR)/null_input.c; $(DO_DED_CC) |
347 |
$(B)/ded/null_input.o : $(NDIR)/null_input.c; $(DO_DED_CC) |
| 340 |
$(B)/ded/null_snddma.o : $(NDIR)/null_snddma.c; $(DO_DED_CC) |
348 |
$(B)/ded/null_snddma.o : $(NDIR)/null_snddma.c; $(DO_DED_CC) |
| 341 |
@@ -1068,7 +1082,7 @@ |
349 |
@@ -1068,7 +1088,7 @@ |
| 342 |
$(B)/baseq3/cgame/q_math.o \ |
350 |
$(B)/baseq3/cgame/q_math.o \ |
| 343 |
$(B)/baseq3/cgame/q_shared.o |
351 |
$(B)/baseq3/cgame/q_shared.o |
| 344 |
|
352 |
|
|
Lines 347-353
Link Here
|
| 347 |
$(CC) $(SHLIBLDFLAGS) -o $@ $(Q3CGOBJ) |
355 |
$(CC) $(SHLIBLDFLAGS) -o $@ $(Q3CGOBJ) |
| 348 |
|
356 |
|
| 349 |
$(B)/baseq3/cgame/bg_misc.o : $(GDIR)/bg_misc.c; $(DO_SHLIB_CC) |
357 |
$(B)/baseq3/cgame/bg_misc.o : $(GDIR)/bg_misc.c; $(DO_SHLIB_CC) |
| 350 |
@@ -1128,7 +1142,7 @@ |
358 |
@@ -1128,7 +1148,7 @@ |
| 351 |
$(B)/missionpack/cgame/q_shared.o \ |
359 |
$(B)/missionpack/cgame/q_shared.o \ |
| 352 |
$(B)/missionpack/cgame/ui_shared.o |
360 |
$(B)/missionpack/cgame/ui_shared.o |
| 353 |
|
361 |
|
|
Lines 356-362
Link Here
|
| 356 |
$(CC) $(SHLIBLDFLAGS) -o $@ $(MPCGOBJ) |
364 |
$(CC) $(SHLIBLDFLAGS) -o $@ $(MPCGOBJ) |
| 357 |
|
365 |
|
| 358 |
$(B)/missionpack/cgame/bg_misc.o : $(GDIR)/bg_misc.c; $(DO_SHLIB_CC) -DMISSIONPACK |
366 |
$(B)/missionpack/cgame/bg_misc.o : $(GDIR)/bg_misc.c; $(DO_SHLIB_CC) -DMISSIONPACK |
| 359 |
@@ -1200,7 +1214,7 @@ |
367 |
@@ -1200,7 +1220,7 @@ |
| 360 |
$(B)/baseq3/game/q_math.o \ |
368 |
$(B)/baseq3/game/q_math.o \ |
| 361 |
$(B)/baseq3/game/q_shared.o |
369 |
$(B)/baseq3/game/q_shared.o |
| 362 |
|
370 |
|
|
Lines 365-371
Link Here
|
| 365 |
$(CC) $(SHLIBLDFLAGS) -o $@ $(Q3GOBJ) |
373 |
$(CC) $(SHLIBLDFLAGS) -o $@ $(Q3GOBJ) |
| 366 |
|
374 |
|
| 367 |
$(B)/baseq3/game/ai_chat.o : $(GDIR)/ai_chat.c; $(DO_SHLIB_CC) |
375 |
$(B)/baseq3/game/ai_chat.o : $(GDIR)/ai_chat.c; $(DO_SHLIB_CC) |
| 368 |
@@ -1278,7 +1292,7 @@ |
376 |
@@ -1278,7 +1298,7 @@ |
| 369 |
$(B)/missionpack/game/q_math.o \ |
377 |
$(B)/missionpack/game/q_math.o \ |
| 370 |
$(B)/missionpack/game/q_shared.o |
378 |
$(B)/missionpack/game/q_shared.o |
| 371 |
|
379 |
|
|
Lines 374-380
Link Here
|
| 374 |
$(CC) $(SHLIBLDFLAGS) -o $@ $(MPGOBJ) |
382 |
$(CC) $(SHLIBLDFLAGS) -o $@ $(MPGOBJ) |
| 375 |
|
383 |
|
| 376 |
$(B)/missionpack/game/ai_chat.o : $(GDIR)/ai_chat.c; $(DO_SHLIB_CC) -DMISSIONPACK |
384 |
$(B)/missionpack/game/ai_chat.o : $(GDIR)/ai_chat.c; $(DO_SHLIB_CC) -DMISSIONPACK |
| 377 |
@@ -1367,7 +1381,7 @@ |
385 |
@@ -1367,7 +1387,7 @@ |
| 378 |
$(B)/baseq3/ui/q_math.o \ |
386 |
$(B)/baseq3/ui/q_math.o \ |
| 379 |
$(B)/baseq3/ui/q_shared.o |
387 |
$(B)/baseq3/ui/q_shared.o |
| 380 |
|
388 |
|
|
Lines 383-389
Link Here
|
| 383 |
$(CC) $(CFLAGS) $(SHLIBLDFLAGS) -o $@ $(Q3UIOBJ) |
391 |
$(CC) $(CFLAGS) $(SHLIBLDFLAGS) -o $@ $(Q3UIOBJ) |
| 384 |
|
392 |
|
| 385 |
$(B)/baseq3/ui/bg_misc.o : $(GDIR)/bg_misc.c; $(DO_SHLIB_CC) |
393 |
$(B)/baseq3/ui/bg_misc.o : $(GDIR)/bg_misc.c; $(DO_SHLIB_CC) |
| 386 |
@@ -1410,7 +1424,7 @@ |
394 |
@@ -1410,7 +1430,7 @@ |
| 387 |
$(B)/baseq3/ui/ui_startserver.o : $(Q3UIDIR)/ui_startserver.c; $(DO_SHLIB_CC) |
395 |
$(B)/baseq3/ui/ui_startserver.o : $(Q3UIDIR)/ui_startserver.c; $(DO_SHLIB_CC) |
| 388 |
$(B)/baseq3/ui/ui_team.o : $(Q3UIDIR)/ui_team.c; $(DO_SHLIB_CC) |
396 |
$(B)/baseq3/ui/ui_team.o : $(Q3UIDIR)/ui_team.c; $(DO_SHLIB_CC) |
| 389 |
$(B)/baseq3/ui/ui_teamorders.o : $(Q3UIDIR)/ui_teamorders.c; $(DO_SHLIB_CC) |
397 |
$(B)/baseq3/ui/ui_teamorders.o : $(Q3UIDIR)/ui_teamorders.c; $(DO_SHLIB_CC) |
|
Lines 392-398
Link Here
|
| 392 |
$(B)/baseq3/ui/ui_video.o : $(Q3UIDIR)/ui_video.c; $(DO_SHLIB_CC) |
400 |
$(B)/baseq3/ui/ui_video.o : $(Q3UIDIR)/ui_video.c; $(DO_SHLIB_CC) |
| 393 |
|
401 |
|
| 394 |
# bk001205 - these wre the only SHLIB compiles in 1.17 |
402 |
# bk001205 - these wre the only SHLIB compiles in 1.17 |
| 395 |
@@ -1450,7 +1464,7 @@ |
403 |
@@ -1450,7 +1470,7 @@ |
| 396 |
# $(B)/missionpack/ui/q_math.o \ |
404 |
# $(B)/missionpack/ui/q_math.o \ |
| 397 |
# $(B)/missionpack/ui/q_shared.o |
405 |
# $(B)/missionpack/ui/q_shared.o |
| 398 |
|
406 |
|
|
Lines 401-407
Link Here
|
| 401 |
$(CC) $(CFLAGS) $(SHLIBLDFLAGS) -o $@ $(MPUIOBJ) |
409 |
$(CC) $(CFLAGS) $(SHLIBLDFLAGS) -o $@ $(MPUIOBJ) |
| 402 |
|
410 |
|
| 403 |
$(B)/missionpack/ui/ui_atoms.o : $(UIDIR)/ui_atoms.c; $(DO_SHLIB_CC) -DMISSIONPACK |
411 |
$(B)/missionpack/ui/ui_atoms.o : $(UIDIR)/ui_atoms.c; $(DO_SHLIB_CC) -DMISSIONPACK |
| 404 |
@@ -1613,23 +1627,8 @@ |
412 |
@@ -1613,23 +1633,8 @@ |
| 405 |
$(B)/q3static/unix_net.o \ |
413 |
$(B)/q3static/unix_net.o \ |
| 406 |
$(B)/q3static/unix_shared.o \ |
414 |
$(B)/q3static/unix_shared.o \ |
| 407 |
\ |
415 |
\ |
|
Lines 425-431
Link Here
|
| 425 |
$(B)/q3static/linux_snd.o \ |
433 |
$(B)/q3static/linux_snd.o \ |
| 426 |
$(B)/q3static/snd_mixa.o \ |
434 |
$(B)/q3static/snd_mixa.o \ |
| 427 |
$(B)/q3static/matha.o |
435 |
$(B)/q3static/matha.o |
| 428 |
@@ -1779,7 +1778,6 @@ |
436 |
@@ -1779,7 +1784,6 @@ |
| 429 |
$(B)/q3static/unix_net.o : $(UDIR)/unix_net.c; $(DO_CC) -DQ3_STATIC |
437 |
$(B)/q3static/unix_net.o : $(UDIR)/unix_net.c; $(DO_CC) -DQ3_STATIC |
| 430 |
$(B)/q3static/unix_shared.o : $(UDIR)/unix_shared.c; $(DO_CC) -DQ3_STATIC |
438 |
$(B)/q3static/unix_shared.o : $(UDIR)/unix_shared.c; $(DO_CC) -DQ3_STATIC |
| 431 |
$(B)/q3static/linux_glimp.o : $(UDIR)/linux_glimp.c; $(DO_CC) -DQ3_STATIC |
439 |
$(B)/q3static/linux_glimp.o : $(UDIR)/linux_glimp.c; $(DO_CC) -DQ3_STATIC |
|
Lines 433-439
Link Here
|
| 433 |
$(B)/q3static/linux_qgl.o : $(UDIR)/linux_qgl.c; $(DO_CC) -DQ3_STATIC |
441 |
$(B)/q3static/linux_qgl.o : $(UDIR)/linux_qgl.c; $(DO_CC) -DQ3_STATIC |
| 434 |
$(B)/q3static/linux_input.o : $(UDIR)/linux_input.c; $(DO_CC) -DQ3_STATIC |
442 |
$(B)/q3static/linux_input.o : $(UDIR)/linux_input.c; $(DO_CC) -DQ3_STATIC |
| 435 |
$(B)/q3static/linux_snd.o : $(UDIR)/linux_snd.c; $(DO_CC) -DQ3_STATIC |
443 |
$(B)/q3static/linux_snd.o : $(UDIR)/linux_snd.c; $(DO_CC) -DQ3_STATIC |
| 436 |
@@ -2020,7 +2018,7 @@ |
444 |
@@ -2020,7 +2024,7 @@ |
| 437 |
|
445 |
|
| 438 |
|
446 |
|
| 439 |
|
447 |
|
|
Lines 442-448
Link Here
|
| 442 |
$(CC) $(CFLAGS) -o $@ $(Q3SOBJ) $(GLLDFLAGS) $(LDFLAGS) |
450 |
$(CC) $(CFLAGS) -o $@ $(Q3SOBJ) $(GLLDFLAGS) $(LDFLAGS) |
| 443 |
|
451 |
|
| 444 |
|
452 |
|
| 445 |
@@ -2059,9 +2057,9 @@ |
453 |
@@ -2059,9 +2063,9 @@ |
| 446 |
|
454 |
|
| 447 |
copyfiles: |
455 |
copyfiles: |
| 448 |
-mkdirhier $(COPYDIR) |
456 |
-mkdirhier $(COPYDIR) |