home *** CD-ROM | disk | FTP | other *** search
- #*******************************************************************
- #* CLIPDEMO.CST
- #* (c) 1992-1994 STAR DIVISION
- #*******************************************************************
-
- !INCLUDE <make.inc>
-
- # *** CLIPDEMO.EXE *************************************************
- $(MISC)\clipdemo.exe: $(MISC)\clipdemo.obj \
- $(MISC)\clipdemo.res \
- $(MISC)\clipdemo.def \
- $(MISC)\clipdemo.lnk
- @echo ---------------
- @echo Making: $@
- $(LINK) $(LINKFLAGS) @$(MISC)\clipdemo.lnk
- $(RC) $(RCFLAGS) $(MISC)\clipdemo.res $@
-
- # *** CLIPDEMO.RES *************************************************
- $(MISC)\clipdemo.res: $(MISC)\clipdemo.srs \
- $(MISC)\clipdemo.rlk
- @echo ---------------
- @echo Making: $@
- $(RSC) $(RSCLINK) @$(MISC)\clipdemo.rlk
-
- # *** CLIPDEMO.OBJ *************************************************
- $(MISC)\clipdemo.obj: clipdemo.cxx \
- clipdemo.hrc
-
- # *** CLIPDEMO.SRS *************************************************
- $(MISC)\clipdemo.srs: clipdemo.src clipdemo.hrc
-
- # *** CLIPDEMO.LNK *************************************************
- $(MISC)\clipdemo.lnk: clipdemo.cst
- @echo ---------------
- @echo Making: $@
- @echo $(MISC)\clipdemo.obj >$@
- @echo $(MISC)\clipdemo.exe >>$@
- @echo $(MISC)\clipdemo.map >>$@
- @echo sv.lib + >>$@
- @echo tools.lib + >>$@
- @echo $(STDLIBS) >>$@
- @echo $(MISC)\clipdemo.def >>$@
-
- # *** CLIPDEMO.RLK *************************************************
- $(MISC)\clipdemo.rlk: clipdemo.cst
- @echo ---------------
- @echo Making: $@
- @echo -fs$(MISC)\clipdemo.rc >$@
- @echo -fo$(MISC)\clipdemo.res >>$@
- @echo $(MISC)\clipdemo.srs >>$@
-
- # *** CLIPDEMO.DEF *************************************************
- $(MISC)\clipdemo.def: clipdemo.cst
- @echo ---------------
- @echo Making: $@
- @echo NAME CLIPDEMO $(API) >$@
- @echo DESCRIPTION 'StarView-ClipboardDemo' >>$@
- @echo $(EXETYPE) >>$@
- @echo $(STUB) >>$@
- @echo $(PROTMODE) >>$@
- @echo $(CODE) >>$@
- @echo $(DATA) >>$@
- @echo HEAPSIZE 4096 >>$@
- @echo STACKSIZE 8192 >>$@
-