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

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