Index: [thread] [date] [subject] [author]
  From: Huned M. Botee <huned.botee@duke.edu>
  To  : jaf13@acpub.duke.edu
  Date: Wed, 03 Feb 1999 04:38:49 +0000

Re: Make Troubles

Austin Fath wrote:
> 
> if Any TA's are still here, please try to compile my program.  It tells
> me there are no errors and the compiler is done, but it does not create
> an executable.  Duvall looked at it before, but I had syntax errors so
> he could not actually check it, and I am worried I did not email Duvall
> soon enough for him to respond.

You have makefile problems. As it stands, you have no express.cc file,
yet you've specified it within your makefile. This is no good. Change
express.cc to exptree.cc. It'll make a bunch of object files, but
linking will fail because you have "multiply defined" errors. You'll
need to revise LOTS of #include lines in your code to remedy this error.
There are also lots of warnings during compilation.

Good luck.

-- 


Huned M. Botee
huned.botee@duke.edu


Index: [thread] [date] [subject] [author]