home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / control / emxmak.ctl < prev    next >
Text File  |  1995-04-04  |  685b  |  41 lines

  1.  
  2.  
  3. #
  4. # Control file for make under the EMX version of GNU C++
  5. #
  6.  
  7.  
  8. # Change this to point to where emx lives:
  9. EMXPATH = e:\emx\bin
  10.  
  11.  
  12. YACLPLATFORM = os2emx
  13.  
  14. # Path and file names for the class library components:
  15.  
  16.  
  17. YACLLIB     = $(YACLPATH)/lib/$(YACLPLATFORM)
  18. YACLINCLUDE = $(YACLPATH)
  19.  
  20.  
  21. BASE     = base
  22. IO       = io
  23. MEMORY   = memory
  24. UI       = ui
  25.  
  26. #
  27. # Processors
  28. #
  29. CC          = $(EMXPATH)\gcc
  30. AR          = $(EMXPATH)\ar
  31.  
  32.  
  33. # Processor options:
  34.  
  35. # DEBUG = -g
  36. CCOPTS  = -c -I$(YACLINCLUDE) $(DEBUG) -D__OS2__ -fno-implicit-templates
  37. LNKOPTS = $(DEBUG) -L$(YACLLIB)
  38. LNKLIB  = -l$(UI) -l$(IO) -l$(BASE)
  39. # LNKLIB  = $(BASE) $(MEMORY) $(IO) $(UI) 
  40.  
  41.