home *** CD-ROM | disk | FTP | other *** search
/ PC Press 1997 July / Sezamfile97_1.iso / msdos / c / cbase11.a03 / CBASE11.ZIP / DOS / LIBRARY.MAK < prev    next >
Makefile  |  1993-01-01  |  729b  |  39 lines

  1. #
  2. #    Copyright (c) 1989-1992 Citadel Software, Inc.
  3. #    All Rights Reserved
  4. #
  5.  
  6. # library.mak    1.7 - 93/01/01
  7.  
  8. # include makefile to create library for DOS/Windows
  9.  
  10. # macro definitions
  11. !include "..\dos\macros.mak"
  12.  
  13. # commands and options
  14. ARRSP    = ar.rsp        # library archiver response file
  15. LIB    = $(MDL)$(LIBNAME)$(WIN).lib
  16.                 # library file
  17. MAN    = $(LIBNAME).man    # manual file
  18.  
  19. FILES =    $(HDRS) $(SRCS)
  20. MANS =    $(MANS1) $(MANS2) $(MANS3) $(MANS4)
  21. OBJS =    $(SRCS:.c=.obj)
  22.  
  23. default:    $(LIB)
  24.  
  25. all:    $(LIB) man install
  26.  
  27. install: $(LIB) $(MAN)
  28.     $(CP) $(LIBNAME).h $(INCDIR)
  29.     $(CP) $(LIB) $(LIBDIR)
  30.     $(CP) $(MAN) $(MANDIR)
  31.     $(ECHO) $(LIBNAME) installed.
  32.  
  33. $(OBJS):    $(HDRS)
  34.  
  35. #
  36. !include "..\dos\rules.mak"
  37.  
  38. # eof
  39.