home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / xfe / plugins / ImAlive / Makefile < prev    next >
Encoding:
Makefile  |  1998-04-08  |  1.7 KB  |  57 lines

  1. #!gmake
  2. #
  3. # The contents of this file are subject to the Netscape Public License
  4. # Version 1.0 (the "NPL"); you may not use this file except in
  5. # compliance with the NPL.  You may obtain a copy of the NPL at
  6. # http://www.mozilla.org/NPL/
  7. #
  8. # Software distributed under the NPL is distributed on an "AS IS" basis,
  9. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10. # for the specific language governing rights and limitations under the
  11. # NPL.
  12. #
  13. # The Initial Developer of this code under the NPL is Netscape
  14. # Communications Corporation.  Portions created by Netscape are
  15. # Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16. # Reserved.
  17.  
  18. ################################################################################
  19. #
  20. # Template plugin makefile
  21. #
  22. # Platform: Solaris 2.4 and above
  23. #
  24. # The output of the make process will be ImAlive.so
  25. # Install this file either in
  26. #    /usr/lib/netscape/plugins/
  27. #    (or)
  28. #    ~/.netscape/plugins/
  29. #    (or) in any convenient directory and point environment variable
  30. #         NPX_PLUGIN_PATH to point to the directory. It is advisable
  31. #         that the plugins (.so) are the only files in that directory.
  32. #
  33. # This makefile contains some of our defines for the compiler:
  34. #
  35. # PLUGIN_TRACE    Enable this define to get debug prints whenever the plugin
  36. #        api gets control.
  37. #
  38. ################################################################################
  39.  
  40. # Assuming we are in ns/cmd/xfe/plugins/ImAlive
  41. DEPTH        = ../../../..
  42.  
  43. CSRCS        = ImAlive.c stubs.c 
  44.  
  45. LIBRARY_NAME    = ImAlive
  46.  
  47. include $(DEPTH)/config/rules.mk
  48.  
  49. PLUGIN_DEFINES    = -DPLUGIN_TRACE
  50.  
  51. #CFLAGS        += $(PLUGIN_DEFINES)
  52.  
  53. GARBAGE        += Worked.nscp
  54.  
  55. $(OBJDIR)/stubs.o: npunix.c
  56.