Leaked source code of windows server 2003
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.

48 lines
1.3 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. -ansi \
  17. -I../inc \
  18. -I$(ROOT)/usr/include \
  19. -O \
  20. -Wall -Wno-parentheses -Wpointer-arith -Wwrite-strings \
  21. $(NULL)
  22. LDFLAGS = \
  23. -B$(ROOT)/usr/lib/ \
  24. -L../lib \
  25. -L $(ROOT)/usr/lib \
  26. $(NULL)
  27. LIB = ../lib/libGLS.so
  28. NULL =
  29. TARGETS = tcallarr tcapture tparser
  30. default: $(TARGETS)
  31. clean:
  32. rm -f $(TARGETS)
  33. tcallarr: tcallarr.c $(LIB)
  34. $(CC) $(CFLAGS) -o $@ $@.c $(LDFLAGS) -lGLS
  35. tcapture: tcapture.c $(LIB)
  36. $(CC) $(CFLAGS) -o $@ $@.c $(LDFLAGS) -lGLS
  37. tparser: tparser.c $(LIB)
  38. $(CC) $(CFLAGS) -o $@ $@.c $(LDFLAGS) -lGLS