home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-02-08 | 1.4 KB | 42 lines |
- #
- # ADSBASE.MAK -
- #
- # makefile to build ADS\CPP\GENERAL OBJs
- #
- # (C) Copyright 1988-1994 by Autodesk, Inc.
- #
- # This program is copyrighted by Autodesk, Inc. and is licensed
- # to you under the following conditions. You may not distribute
- # or publish the source code of this program in any form. You
- # may incorporate this code in object form in derivative works
- # provided such derivative works are (i.) are designed and
- # intended to work solely with Autodesk, Inc. products, and
- # (ii.) contain Autodesk's copyright notice "(C) Copyright
- # 1988-1994 by Autodesk, Inc."
- #
- # AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
- # AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF MER-
- # CHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.
- # DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
- # UNINTERRUPTED OR ERROR FREE.
- #
- !include <..\adsmake.nt>
-
- LOCINC = $(ADS) $(ADS_CPP)\ADSCPP
- VPATH = $(BASE_OBJ_DIR)
-
- all: $(BASEOBJS)
-
- {.}.cpp{$(VPATH)}.obj:
- echo Compiling $(@B).cpp
- if exist $@ del $@
- $(COMP) -Tp$(@B).cpp $(ERRSTUFF)
- $(POSTERR)
-
- clean:
- echo Cleaning GENERAL Objects
- if not exist $(ADS_CPP_OBJ) mkdir $(ADS_CPP_OBJ)
- if not exist $(BASE_OBJ_DIR) mkdir $(BASE_OBJ_DIR)
- if exist $(BASE_OBJ_DIR)\*.* del /Q $(BASE_OBJ_DIR)\*.*
-
-