home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / pub / users / Harry / Blitz / OSProject / p1 / makefile < prev    next >
Makefile  |  2007-09-19  |  668b  |  38 lines

  1. #
  2. # Type 'make' with this 'makefile' file to build the example BLITZ programs.
  3. # It will execute the following commands as needed, based on files'
  4. # most-recent-update times.
  5.  
  6. all: Echo Hello HelloWorld
  7.  
  8. Echo.o: Echo.s
  9.     asm Echo.s
  10.  
  11. Echo: Echo.o
  12.     lddd Echo.o -o Echo
  13.  
  14. Hello.o: Hello.s
  15.     asm Hello.s
  16.  
  17. Hello: Hello.o
  18.     lddd Hello.o -o Hello
  19.  
  20. Runtime.o: Runtime.s
  21.     asm Runtime.s
  22.  
  23. System.s: System.h System.c
  24.     kpl System -unsafe
  25.  
  26. System.o: System.s
  27.     asm System.s
  28.  
  29. HelloWorld.s: HelloWorld.h HelloWorld.c System.h
  30.     kpl HelloWorld
  31.  
  32. HelloWorld.o: HelloWorld.s
  33.     asm HelloWorld.s
  34.  
  35. HelloWorld: Runtime.o System.o HelloWorld.o
  36.     lddd Runtime.o System.o HelloWorld.o -o HelloWorld
  37.