home *** CD-ROM | disk | FTP | other *** search
/ ftptest.leeds.ac.uk / 2015.02.ftptest.leeds.ac.uk.tar / ftptest.leeds.ac.uk / bionet / CAE-GROUP / SCL-WIN3x / SCLTEST.EXE / SCHEMA-L < prev    next >
Text File  |  1994-12-13  |  1KB  |  34 lines

  1. ##################################################################
  2. # schema_loc   --  defines location of schema libraries & includes
  3. # change these macros to reflect your environment
  4.  
  5. # ************  NOTE **********
  6. # You need to change the values of the following macros to work with your
  7. # environment.  See the README for details.  If you build your class
  8. # libraries with 'mkProbe -i ...', you probably just need to change
  9. # PDES_ROOT to reflect your structure.  Try to keep everything defined
  10. # in terms of SCHEMA_NAME... that way you can build for different
  11. # class libraries on the make command line witha minimum of fuss.
  12.  
  13. #
  14. #  change PDES_ROOT to the location that SCL is installed
  15. PDES_ROOT     = /proj/pdevel
  16.  
  17. #  change ARCH_ROOT to keep different compilers separate
  18. ARCH_ROOT    = $(PDES_ROOT)/arch$(TARGET_ARCH)
  19.  
  20. #  change MAKE_RULES to use different compilers
  21. MAKE_RULES     = $(ARCH_ROOT)/make_rules
  22. include $(MAKE_RULES)
  23.  
  24. #    Locations for the schema class library and header files.  You
  25. #    need to generate and make the schema supplied with the release
  26. #    from $(PDES_ROOT)/data/example/example.exp
  27. #
  28.  
  29. SCHEMA_NAME     = example
  30. SCHEMA_DIR     = $(PDES_ROOT)/src/clSchemas/$(SCHEMA_NAME)
  31. SCHEMA_LIB_DIR     = $(ARCH_ROOT)/Probes/$(SCHEMA_NAME)
  32. LIBSCHEMA     = -L$(SCHEMA_LIB_DIR) -lC$(SCHEMA_NAME)
  33.  
  34.