home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / control / cfrontmk.ctl < prev    next >
Text File  |  1995-01-09  |  774b  |  53 lines

  1.  
  2.  
  3.  
  4. #
  5. # Control file for  makes with cfront-based C++
  6. #
  7.  
  8.  
  9.  
  10.  
  11. YACLPLATFORM = sgi
  12. # YACLPLATFORM = linux
  13.  
  14.  
  15. #
  16. # Various path names: change as necessary
  17. #
  18.  
  19. CPP_INCLUDE = /usr/g++-include  # where iostream.h is to be found
  20. X_INCLUDE   = /usr/include/X11  # where the X and Motif header files live
  21.  
  22.  
  23.  
  24.  
  25. # Path and file names for the class library components:
  26.  
  27.  
  28. YACLLIB     = $(YACLPATH)/lib/$(YACLPLATFORM)
  29. YACLINCLUDE = $(YACLPATH)
  30.  
  31.  
  32. BASE     = base
  33. IO       = io
  34. MEMORY   = memory
  35. UI       = ui
  36.  
  37. #
  38. # Processors
  39. #
  40. CC          = CC
  41.  
  42.  
  43.  
  44. # Processor options:
  45.  
  46. # DEBUG = -g
  47. CCOPTS  = -ptv -c  -I$(YACLINCLUDE) -I$(CPP_INCLUDE) -I$(X_INCLUDE) $(DEBUG) \
  48.  -D__UNIX__ -D__X_MOTIF__ 
  49. LNKOPTS = $(DEBUG) -L$(YACLLIB)
  50. LNKLIB  = $(BASE) $(IO) $(UI) 
  51. # LNKLIB  = $(BASE) $(MEMORY) $(IO) $(UI) 
  52.  
  53.