Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
1.7 KiB

  1. # Copyright 1995-2095, Silicon Graphics, Inc.
  2. # All Rights Reserved.
  3. #
  4. # This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  5. # the contents of this file may not be disclosed to third parties, copied or
  6. # duplicated in any form, in whole or in part, without the prior written
  7. # permission of Silicon Graphics, Inc.
  8. #
  9. # RESTRICTED RIGHTS LEGEND:
  10. # Use, duplication or disclosure by the Government is subject to restrictions
  11. # as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  12. # and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  13. # successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  14. # rights reserved under the Copyright Laws of the United States.
  15. CFLAGS = \
  16. -D__GLS_MSB_FIRST=1 \
  17. -D__GLS_PLATFORM_SOLARIS=1 \
  18. -D__GLS_RELEASE=\"0\" \
  19. -I../inc \
  20. -mt \
  21. -O \
  22. -v \
  23. -X a \
  24. -xstrconst \
  25. $(NULL)
  26. LDFLAGS = \
  27. -G \
  28. $(NULL)
  29. NULL =
  30. OBJECTS = \
  31. cap.o \
  32. ctx.o \
  33. dec.o \
  34. encoding.o \
  35. exec.o \
  36. g_glsapi.o \
  37. g_cap.o \
  38. g_const.o \
  39. g_decbin.o \
  40. g_decswp.o \
  41. g_dectxt.o \
  42. g_dspcap.o \
  43. g_dspdec.o \
  44. g_dspexe.o \
  45. g_exec.o \
  46. g_op.o \
  47. global.o \
  48. glslib.o \
  49. glsutil.o \
  50. immed.o \
  51. opcode.o \
  52. parser.o \
  53. pixel.o \
  54. platform.o \
  55. read.o \
  56. readbin.o \
  57. readtxt.o \
  58. size.o \
  59. write.o \
  60. writebin.o \
  61. writetxt.o \
  62. $(NULL)
  63. STUB = libGL.so
  64. TARGET = libGLS.so
  65. default: $(TARGET)
  66. clean:
  67. rm -f g_glstub.o $(OBJECTS) $(STUB) $(TARGET)
  68. $(STUB): g_glstub.o
  69. $(CC) -o $@ $(LDFLAGS) g_glstub.o -lc
  70. $(TARGET): $(OBJECTS) $(STUB)
  71. $(CC) -o $@ $(LDFLAGS) $(OBJECTS) $(STUB) -lm -lc