Added rule for .cxx and .cpp per suggestion from Geoffroy Montel

<g_montel@yahoo.com>.
This commit is contained in:
Joel Sherrill
1998-06-09 14:21:21 +00:00
parent cec1095101
commit 9456087368
2 changed files with 12 additions and 0 deletions

View File

@@ -193,6 +193,12 @@ ${ARCH}/%.o: %.c
${ARCH}/%.o: %.cc
${COMPILE.cc} -o $@ $<
${ARCH}/%.o: %.cpp
${COMPILE.cc} -o $@ $<
${ARCH}/%.o: %.cxx
${COMPILE.cc} -o $@ $<
${ARCH}/%.o: %.S
${COMPILE.c} -DASM -o $@ $<