home *** CD-ROM | disk | FTP | other *** search
- # ==( makefile )==
-
- # -----------------------------------------------
- # Pro-C Copyright (C) 1987 - 1990 Vestronix Inc.
- # Modification to this source is not supported
- # by Vestronix Inc.
- # All Rights Reserved
- # -----------------------------------------------
- # Written Geo 8-Sep-87
- # Modified Geo 25-Apr-90 See comments below
- # -----------------------------------------------
- # %W% (%H% %T%)
-
- #
- # Modifications
- #
- # Modified 25-Apr-90 Geo - New makefiles and first option
- # Modified 14-Dec-89 Nig
- #
-
- !include "\make.def"
-
- #
- # Proc executables and generator
- #
- all : libs
-
- lib libs : $(LIBE).lib
- souplib support supp soup sup : $(LIBE).lib
-
- $(LIBE).lib : $(MAKE_SOUP)
- -$(RM) $(LIBE).lib
- $(AR) $(LIBE) $(AR_SOUP) $(EOL)
-
- $(MAKE_SOUP) : soupobjs
-
- #
- # Support library
- #
- soupobjs :
- cd bench
- make
- cd ..\help
- make
- cd ..\win
- make
- cd ..\print
- make
- cd ..\gensup
- make
- cd ..
-
-