home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / next / programm / 5647 < prev    next >
Encoding:
Internet Message Format  |  1992-08-16  |  1.1 KB

  1. Path: sparky!uunet!gatech!darwin.sura.net!dtix!mimsy!wilson
  2. From: wilson@mimsy.umd.edu (Anne Wilson)
  3. Newsgroups: comp.sys.next.programmer
  4. Subject: Including Extra Include Files in IB's Makefile
  5. Message-ID: <59695@mimsy.umd.edu>
  6. Date: 16 Aug 92 16:43:05 GMT
  7. Organization: U of Maryland, Dept. of Computer Science, Coll. Pk., MD 20742
  8. Lines: 31
  9.  
  10. Within the context of the Interface Builder's Makefile, which macro 
  11. do people use to indicate that there are extra include files needed 
  12. by a program?  IB gives us the following macros to customize:
  13.  
  14. #    MAKEFILEDIR
  15. #    SOURCEMODE
  16. #    CFLAGS
  17. #    OBJCFLAGS
  18. #    PSWFLAGS
  19. #    LDFLAGS
  20. #    INSTALLFLAGS
  21. #    OTHER_LIBS
  22. #    OTHER_DEBUG_LIBS
  23. #    OTHER_PROF_LIBS
  24. #    OTHER_SOURCEFILES
  25. #    OTHER_OFILES
  26. #    OTHER_PRODUCT_DEPENDS
  27. #    OTHER_INSTALL_DEPENDS
  28. #    OTHER_GARBAGE
  29. #
  30.  
  31. I have been using CFLAGS to list my extra include files, as in
  32.     CFLAGS =  -I$(CWD) -I$(CWD)/$(CONNDIR) -I$(CWD)/$(NETDIR)
  33.  
  34. but CFLAGS really connotes other things to me (like -g for example). 
  35. So, I'm just wondering how other people handle this.  What do you do??
  36.  
  37. Thanks!
  38.  
  39. Anne
  40. wilson@cs.umd.edu 
  41.