From f3457ca0c9a4c9ff9e62fc72f1193e007ce76bae Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sat, 8 Feb 2003 02:40:34 +0000 Subject: [PATCH] Added implicit C++ compile rule for util objects (EXEODIR). --- src/sbbs3/GNUmakefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/sbbs3/GNUmakefile b/src/sbbs3/GNUmakefile index c25c260caa..eaf2a0f512 100644 --- a/src/sbbs3/GNUmakefile +++ b/src/sbbs3/GNUmakefile @@ -122,6 +122,13 @@ $(EXEODIR)/%.o : %.c endif @$(CC) $(CFLAGS) -o $@ -c $< +# Implicit C++ Compile Rule for utils +$(EXEODIR)/%.o : %.cpp + ifndef bcc + @echo Compiling $< + endif + @$(CC) $(CFLAGS) -o $@ -c $< + # Implicit C Compile Rule for SBBS $(LIBODIR)/%.o : %.c ifndef bcc -- GitLab