home *** CD-ROM | disk | FTP | other *** search
/ Between Heaven & Hell 2 / BetweenHeavenHell.cdr / 500 / 471 / rccl190 < prev    next >
Text File  |  1987-03-02  |  577b  |  24 lines

  1. #
  2. # BOOT                        Author :  Vincent Hayward
  3. #                                       School of Electrical Engineering
  4. #                                       Purdue University
  5. #       Dir     : boot
  6. #       File    : Makefile
  7. #       Remarks : make the boot file for the controller download
  8. #
  9.  
  10. DESTDIR = /b/rccl/s
  11.  
  12. boot:   mkboot.c boot.s
  13.     cc mkboot.c -o mkboot
  14.     cc11 -c boot.s
  15.     ld11 boot.o -s
  16.     od a.out | mkboot
  17.     rm -f mkboot a.out boot.o
  18.  
  19. install:
  20.     make
  21.     rm -f $(DESTDIR)/boot $(DESTDIR)/dl
  22.     cp boot $(DESTDIR)/boot
  23.     cp dl   $(DESTDIR)/dl
  24.