mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 22:30:07 -05:00
ENH: fix for Sgi make
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
# this file contains the most basic rules. This is used
|
||||
# in the CMake/Source/Makefile.in to avoid infinite recursion
|
||||
# in the rule for all:
|
||||
|
||||
# set up make suffixes
|
||||
|
||||
.SUFFIXES: .cxx .java .class
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# rules for building .o files from source files
|
||||
|
||||
.c.o:
|
||||
${CC} ${CC_FLAGS} -c $< -o $@
|
||||
.cxx.o:
|
||||
${CXX} ${CXX_FLAGS} -c $< -o $@
|
||||
Reference in New Issue
Block a user