home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_01 / DIGI_104.LZH / DIGITAPE.104 / MODULE.PRG / EXAMPLE / MAKEFILE < prev   
Text File  |  1993-07-07  |  451b  |  20 lines

  1. # Beispiel-Makefile für DigiTape Module
  2. # Letzte Änderung: 1.7.93
  3.  
  4. OBJECTS = hall.r HALL.D
  5.  
  6. xyz.x : $(OBJECTS)
  7.     $(RM) xyz.x
  8.  
  9. # aus RSC-File C-Source File HALL.R  erzeugen
  10. hall.r : hall.rsc
  11.     \dt_modul\rsc_to_c.ttp $*.rsc
  12.  
  13. # aus DSP56000 Assembler Source File C-Source File
  14. # HALL.D und Define File HALL.DH erzeugen
  15. HALL.D : HALL.CLN
  16.     \dt_modul\cln_to_d.ttp $*
  17. HALL.CLN : HALL.ASM
  18.     \dt_modul\asm56000.ttp -b \dt_modul\example\$*.ASM
  19.  
  20.