home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / gofer230.zip / Progs / Gofer / Demos / Expert / Makefile < prev    next >
Makefile  |  1994-06-23  |  615b  |  26 lines

  1. # Two ways to compile the expert system, one with gofer and one with hbc:
  2.  
  3. expert: Result.hs Table.hs Knowledge.hs Match.hs Search.hs Main.hs
  4.     goferc + expert.prj
  5.  
  6. expert2: Result.o Table.o Knowledge.o Match.o Search.o Main.o
  7.     hbc -o expert2 *.o
  8.  
  9. Result.o: Result.hs
  10.     hbc -c Result.hs
  11.  
  12. Table.o: Table.hs Result.o
  13.     hbc -c Table.hs
  14.  
  15. Knowledge.o: Knowledge.hs Table.o Result.o
  16.     hbc -c Knowledge.hs
  17.  
  18. Match.o: Match.hs Knowledge.o Table.o Result.o
  19.     hbc -c Match.hs
  20.  
  21. Search.o: Search.hs Match.o Knowledge.o Table.o Result.o
  22.     hbc -c Search.hs
  23.  
  24. Main.o: Main.hs Search.o Match.o Knowledge.o Table.o Result.o
  25.     hbc -c Main.hs
  26.