home *** CD-ROM | disk | FTP | other *** search
/ PC Direkt 1995 March / PCD_395.iso / starview / pm2csci / german / clipdemo.cs_ / CLIPDEMO.CST
Encoding:
Text File  |  1994-01-13  |  3.0 KB  |  65 lines

  1. #*******************************************************************
  2. #* CLIPDEMO.CST
  3. #* (c) 1992-1994 STAR DIVISION
  4. #*******************************************************************
  5.  
  6. !INCLUDE <make.inc>
  7.  
  8. # *** CLIPDEMO.EXE *************************************************
  9. $(MISC)\clipdemo.exe:   $(MISC)\clipdemo.obj                       \
  10.                         $(MISC)\clipdemo.res                       \
  11.                         $(MISC)\clipdemo.def                       \
  12.                         $(MISC)\clipdemo.lnk
  13.     @echo ---------------
  14.     @echo Making: $@
  15.     $(LINK) $(LINKFLAGS) @$(MISC)\clipdemo.lnk
  16.     $(RC) $(RCFLAGS) $(MISC)\clipdemo.res $@
  17.  
  18. # *** CLIPDEMO.RES *************************************************
  19. $(MISC)\clipdemo.res:   $(MISC)\clipdemo.srs                       \
  20.                         $(MISC)\clipdemo.rlk
  21.     @echo ---------------
  22.     @echo Making: $@
  23.     $(RSC) $(RSCLINK) @$(MISC)\clipdemo.rlk
  24.  
  25. # *** CLIPDEMO.OBJ *************************************************
  26. $(MISC)\clipdemo.obj:   clipdemo.cxx                               \
  27.                         clipdemo.hrc
  28.  
  29. # *** CLIPDEMO.SRS *************************************************
  30. $(MISC)\clipdemo.srs:   clipdemo.src   clipdemo.hrc
  31.  
  32. # *** CLIPDEMO.LNK *************************************************
  33. $(MISC)\clipdemo.lnk:   clipdemo.cst
  34.     @echo ---------------
  35.     @echo Making: $@
  36.     @echo $(MISC)\clipdemo.obj                                   >$@
  37.     @echo $(MISC)\clipdemo.exe                                  >>$@
  38.     @echo $(MISC)\clipdemo.map                                  >>$@
  39.     @echo sv.lib                            +                   >>$@
  40.     @echo tools.lib                         +                   >>$@
  41.     @echo $(STDLIBS)                                            >>$@
  42.     @echo $(MISC)\clipdemo.def                                  >>$@
  43.  
  44. # *** CLIPDEMO.RLK *************************************************
  45. $(MISC)\clipdemo.rlk:   clipdemo.cst
  46.     @echo ---------------
  47.     @echo Making: $@
  48.     @echo -fs$(MISC)\clipdemo.rc                                 >$@
  49.     @echo -fo$(MISC)\clipdemo.res                               >>$@
  50.     @echo $(MISC)\clipdemo.srs                                  >>$@
  51.  
  52. # *** CLIPDEMO.DEF *************************************************
  53. $(MISC)\clipdemo.def:   clipdemo.cst
  54.     @echo ---------------
  55.     @echo Making: $@
  56.     @echo NAME          CLIPDEMO $(API)                          >$@
  57.     @echo DESCRIPTION   'StarView-ClipboardDemo'                >>$@
  58.     @echo $(EXETYPE)                                            >>$@
  59.     @echo $(STUB)                                               >>$@
  60.     @echo $(PROTMODE)                                           >>$@
  61.     @echo $(CODE)                                               >>$@
  62.     @echo $(DATA)                                               >>$@
  63.     @echo HEAPSIZE      4096                                    >>$@
  64.     @echo STACKSIZE     8192                                    >>$@
  65.