Fix addition of C++ .cc source to SRCS

Fix assumption that all of the source files are .c, as some are .cc.

Not tested, based on similar change to
  external/gpl3/gcc/usr.bin/cc1plus/Makefile
This commit is contained in:
lukem 2020-07-01 08:25:44 +00:00
parent 1b74214774
commit 7115637964
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
# $NetBSD: Makefile,v 1.8 2019/09/26 08:03:59 mrg Exp $
# $NetBSD: Makefile,v 1.9 2020/07/01 08:25:44 lukem Exp $
PROG= cc1plus
SRCS= ${G_CXX_OBJS:S,c-family/,,:S,cp/,,:Nlibcpp.a:.o=.c} main.c ${PROG}-checksum.c
SRCS= ${G_CXX_OBJS:S,c-family/,,:S,cp/,,:S,constraint.o,constraint.cc,:S,logic.o,logic.cc,:Nlibcpp.a:.o=.c}
SRCS+= main.c ${PROG}-checksum.c
# XXX
NOMAN= 1