home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / LOBE.src.sit / LOBE.src / Makefile < prev    next >
Makefile  |  1994-12-20  |  898b  |  32 lines

  1. # This Makefile is has no dependencies. Consider yourself warned.
  2.  
  3. INITOBJS=bdinstall.a.o resident.a.o InitToPrefs.c.o ShowIcon7.c.o
  4. CDEVOBJS=cdev.c.o InitToPrefs.c.o cdev.a.o resident.a.o
  5.  
  6. .a.o ト .a
  7.     {Asm} {DepDir}{Default}.a -o {TargDir}{Default}.a.o -case on
  8.     
  9. .c.o ト .c common.h
  10.     {C} {DepDir}{Default}.c -o {TargDir}{Default}.c.o -b -mbg off -opt full
  11.     
  12. LOBE トト {INITOBJS}
  13.     Link -msg nowarn -rt INIT=0 -m INITInstall -sg theINIT -ra theINIT=resLocked カ
  14.     -o {Targ} {INITOBJS}
  15.     SetFile -t 'cdev' -c 'CR91' {Targ} -a B
  16.     
  17. LOBE トト {CDEVOBJS}
  18.     Link -msg nowarn -rt cdev=-4064 -m CDEVENTRY -sg theCDEV -ra theCDEV=resPurgeable カ
  19.     -o {Targ} {CDEVOBJS} "{Libraries}"Interface.o
  20.     SetFile -t 'cdev' -c 'CR91' {Targ} -a B
  21.  
  22. LOBE トト LOBE.rsrc
  23.     Echo 'include "LOBE.rsrc";' | Rez -a -o {Targ}
  24.  
  25. clean ト 
  26.     Delete -i {INITOBJS} {CDEVOBJS} LOBE
  27.     
  28. install ト LOBE
  29.     Duplicate -y LOBE "{SystemFolder}Control Panels"
  30.  
  31.  
  32.