home *** CD-ROM | disk | FTP | other *** search
/ PC Press 1997 July / Sezamfile97_1.iso / msdos / c / cbase11.a03 / CBASE11.ZIP / DOS / MACROS.MAK < prev    next >
Text File  |  1993-01-01  |  694b  |  27 lines

  1. #
  2. #    Copyright (c) 1989-1992 Citadel Software, Inc.
  3. #    All Rights Reserved
  4. #
  5.  
  6. # macros.mak    1.7 - 93/01/01
  7.  
  8. # include makefile containing macro definitions
  9.  
  10. # directories and files
  11. BINDIR    = ..\bin        # bin directory
  12. DOSDIR    = ..\dos        # DOS specific files directory
  13. INCDIR    = ..\include        # include directory
  14. LIBDIR    = ..\lib        # library directory
  15. MANDIR    = ..\man        # manual entry directory
  16. TMPFILE    = tmp            # temporary file
  17.  
  18. # commands and options
  19. CAT    = $(BINDIR)\cat        # file catenate command
  20. CP    = copy            # copy file command
  21. ECHO    = echo            # echo command
  22. MANX    = $(BINDIR)\manx    # manual entry extract command
  23. RM    = del            # remove file command
  24. MV    = rename        # move file command
  25.  
  26. # eof
  27.