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.

83 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. -Aa \
  17. -D__GLS_FAKE_FINITE_FUNC=1 \
  18. -D__GLS_MSB_FIRST=1 \
  19. -D__GLS_PLATFORM_HPUX=1 \
  20. -D__GLS_RELEASE=\"0\" \
  21. -I../inc \
  22. -O \
  23. +e \
  24. +z \
  25. $(NULL)
  26. LDFLAGS = \
  27. -L . \
  28. -b \
  29. -z \
  30. $(NULL)
  31. NULL =
  32. OBJECTS = \
  33. cap.o \
  34. ctx.o \
  35. dec.o \
  36. encoding.o \
  37. exec.o \
  38. g_glsapi.o \
  39. g_cap.o \
  40. g_const.o \
  41. g_decbin.o \
  42. g_decswp.o \
  43. g_dectxt.o \
  44. g_dspcap.o \
  45. g_dspdec.o \
  46. g_dspexe.o \
  47. g_exec.o \
  48. g_op.o \
  49. global.o \
  50. glslib.o \
  51. glsutil.o \
  52. immed.o \
  53. opcode.o \
  54. parser.o \
  55. pixel.o \
  56. platform.o \
  57. read.o \
  58. readbin.o \
  59. readtxt.o \
  60. size.o \
  61. write.o \
  62. writebin.o \
  63. writetxt.o \
  64. $(NULL)
  65. STUB = libGL.sl
  66. TARGET = libGLS.sl
  67. default: $(TARGET)
  68. clean:
  69. rm -f g_glstub.o $(OBJECTS) $(STUB) $(TARGET)
  70. $(STUB): g_glstub.o
  71. $(LD) -o $@ $(LDFLAGS) g_glstub.o
  72. $(TARGET): $(OBJECTS) $(STUB)
  73. $(LD) -o $@ $(LDFLAGS) -c g_gls_sl.exp +I __glsInitSL \
  74. $(OBJECTS) -lGL -ldld -lm -lc