home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / nsprpub / pr / src / md / os2 / Makefile next >
Encoding:
Makefile  |  1998-04-08  |  1.2 KB  |  52 lines

  1. #
  2. # The contents of this file are subject to the Netscape Public License
  3. # Version 1.0 (the "NPL"); you may not use this file except in
  4. # compliance with the NPL.  You may obtain a copy of the NPL at
  5. # http://www.mozilla.org/NPL/
  6. # Software distributed under the NPL is distributed on an "AS IS" basis,
  7. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  8. # for the specific language governing rights and limitations under the
  9. # NPL.
  10. # The Initial Developer of this code under the NPL is Netscape
  11. # Communications Corporation.  Portions created by Netscape are
  12. # Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  13. # Reserved.
  14. #
  15.  
  16. #! gmake
  17.  
  18. MOD_DEPTH = ../../../..
  19.  
  20. include $(MOD_DEPTH)/config/config.mk
  21.  
  22. ifeq ($(OS_TARGET), OS2)
  23. CSRCS = \
  24.     os2misc.c \
  25.     os2sem.c   \
  26.     os2inrval.c \
  27.     os2gc.c \
  28.     os2thred.c \
  29.     os2io.c \
  30.     os2cv.c \
  31.     os2sock.c \
  32.     os2_errors.c \
  33.     os2poll.c \
  34.     $(NULL)
  35. endif
  36.  
  37. TARGETS    = $(OBJS)
  38.  
  39. INCLUDES = -I$(DIST)/include/private -I$(DIST)/include
  40.  
  41. include $(MOD_DEPTH)/config/rules.mk
  42.  
  43. export:: $(TARGETS)
  44.     @cmd /C "copy *.obj $(OBJDIR)\*.o > nul"
  45.  
  46. install:: export
  47.  
  48.  
  49.  
  50.