home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 v2.4 Fix / W95-v2.4fix.iso / ACADWIN / ADS / CPP / GENERAL / ADSBASE.MAK < prev    next >
Encoding:
Makefile  |  1995-02-08  |  1.4 KB  |  42 lines

  1. #
  2. #    ADSBASE.MAK -
  3. #        
  4. #      makefile to build ADS\CPP\GENERAL OBJs
  5. #       
  6. #      (C) Copyright 1988-1994 by Autodesk, Inc.
  7. #
  8. #      This program is copyrighted by Autodesk, Inc. and is  licensed
  9. #      to you under the following conditions.  You may not distribute
  10. #      or  publish the source code of this program in any form.   You
  11. #      may  incorporate this code in object form in derivative  works
  12. #      provided  such  derivative  works  are  (i.) are  designed and
  13. #      intended  to  work  solely  with  Autodesk, Inc. products, and
  14. #      (ii.)  contain  Autodesk's  copyright  notice  "(C)  Copyright
  15. #      1988-1994 by Autodesk, Inc."
  16. #
  17. #      AUTODESK  PROVIDES THIS PROGRAM "AS IS" AND WITH  ALL  FAULTS.
  18. #      AUTODESK  SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF  MER-
  19. #      CHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK,  INC.
  20. #      DOES  NOT  WARRANT THAT THE OPERATION OF THE PROGRAM  WILL  BE
  21. #      UNINTERRUPTED OR ERROR FREE.
  22. #
  23. !include <..\adsmake.nt>
  24.  
  25. LOCINC          = $(ADS) $(ADS_CPP)\ADSCPP
  26. VPATH           = $(BASE_OBJ_DIR)
  27.  
  28. all: $(BASEOBJS)
  29.  
  30. {.}.cpp{$(VPATH)}.obj:
  31.     echo Compiling $(@B).cpp
  32.     if exist $@ del $@
  33.     $(COMP) -Tp$(@B).cpp $(ERRSTUFF)
  34.     $(POSTERR)
  35.  
  36. clean:
  37.     echo Cleaning GENERAL Objects
  38.     if not exist $(ADS_CPP_OBJ) mkdir $(ADS_CPP_OBJ)
  39.     if not exist $(BASE_OBJ_DIR) mkdir $(BASE_OBJ_DIR)
  40.     if exist $(BASE_OBJ_DIR)\*.* del /Q $(BASE_OBJ_DIR)\*.*
  41.  
  42.