CMakeSimpleRules.make.in 405 B

123456789101112131415
  1. # this file contains the most basic rules. This is used
  2. # in the CMake/Source/Makefile.in to avoid infinite recursion
  3. # in the rule for all:
  4. # set up make suffixes
  5. .SUFFIXES: .cxx .java .class
  6. #------------------------------------------------------------------------------
  7. # rules for building .o files from source files
  8. .c.o:
  9. ${CC} ${CC_FLAGS} -c $< -o $@
  10. .cxx.o:
  11. ${CXX} ${CXX_FLAGS} -c $< -o $@