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

  1. #*******************************************************************
  2. #* CLIPDEMO.BLC
  3. #* (c) 1992-1994 STAR DIVISION
  4. #*******************************************************************
  5.  
  6. !INCLUDE <..\..\inc\make.inc>
  7.  
  8. # *** CLIPDEMO.EXE *************************************************
  9. $(MISC)\clipdemo.exe:   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:   clipdemo.srs                               \
  20.                         $(MISC)\clipdemo.rlk
  21.     @echo ---------------
  22.     @echo Making: $<
  23.     $(RSC) $(RSCLINK) @$(MISC)\clipdemo.rlk
  24.  
  25. # *** CLIPDEMO.OBJ *************************************************
  26. clipdemo.obj:           clipdemo.cxx   clipdemo.hrc
  27.  
  28. # *** CLIPDEMO.SRS *************************************************
  29. clipdemo.srs:           clipdemo.src   clipdemo.hrc
  30.  
  31. # *** CLIPDEMO.LNK *************************************************
  32. $(MISC)\clipdemo.lnk:   clipdemo.blc
  33.     @echo ---------------
  34.     @echo Making: $<
  35.     @echo $(STDOBJS)                        +                    >$<
  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.blc
  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.blc
  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.