From 3d7914638ef19bba7dadc3ea440736fc1dd5fc14 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sat, 6 Dec 2003 05:02:53 +0000 Subject: [PATCH] Don't use default compiler if bcc is defined on command-line. --- src/sbbs3/GNUmakefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/sbbs3/GNUmakefile b/src/sbbs3/GNUmakefile index 513fd8d64d..f7bf1471d3 100644 --- a/src/sbbs3/GNUmakefile +++ b/src/sbbs3/GNUmakefile @@ -38,23 +38,23 @@ else endif ifdef bcc - CC ?= bc++ -q + CC = bc++ -q CCPRE := bcc - CXX ?= bc++ -q + CXX = bc++ -q LD = ilink -q CFLAGS += -mm -md -D__unix__ -w-csu -w-pch -w-ccc -w-rch -w-par -w-aus else CFLAGS += -MMD -Wall CCPRE ?= gcc ifdef BUILD_DEPENDS - CC = ../build/mkdep -a + CC = ../build/mkdep -a CXX = ../build/mkdep -a - LD = echo + LD = echo COMPILE_MSG := Depending else - CC ?= gcc + CC ?= gcc CXX ?= g++ - LD ?= ld + LD ?= ld COMPILE_MSG := Compiling endif endif -- GitLab