From: Michael Jarvis Date: Fri, 2 Jun 2017 03:45:24 +0000 (-0500) Subject: Add explicit rule for compile to use CCFLAGS instead of CFLAGS X-Git-Tag: 0.90~38 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=2620bf922f351a346f74210f2dc4f782cbc44486 Add explicit rule for compile to use CCFLAGS instead of CFLAGS --- diff --git a/Makefile b/Makefile index 23cd7f9..7b81be6 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Makefile for the open-source release of adventure 2.5 -CC?=gcc -CCFLAGS=-std=c99 +CC=clang +CCFLAGS=-O2 -std=c99 -Wall -Wextra -Wpedantic -fstack-protector -fstack-protector-all -pipe -mtune=native LIBS= UNAME_S := $(shell uname -s) ifeq ($(UNAME_S),Linux) @@ -33,6 +33,9 @@ database.o: database.h funcs.h: database.h +compile: compile.c + $(CC) $(CCFLAGS) -o $@ $< + database.c database.h: compile adventure.text ./compile $(CC) $(CCFLAGS) -O $(DBX) -c database.c