From 14e9364c4f2874430f21a60f7e98a1b8b93a4743 Mon Sep 17 00:00:00 2001 From: commandblockguy Date: Mon, 2 Nov 2020 21:20:12 -0600 Subject: [PATCH] Fix the makefile for llvm --- makefile | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/makefile b/makefile index b8b9fe0..b96bf17 100644 --- a/makefile +++ b/makefile @@ -1,16 +1,22 @@ # todo: seems to be calculating the list of C files prior to running convimg -NAME ?= TANKS -COMPRESSED ?= YES -ICONSRC ?= iconc.png -OUTPUT_MAP ?= YES +NAME ?= TANKS +ICON ?= iconc.png DESCRIPTION ?= "Tanks! CE" +COMPRESSED ?= YES +ARCHIVED ?= YES + +OUTPUT_MAP ?= YES + +CFLAGS ?= -Wall -Wextra -Oz # ---------------------------- -default: all_gfx all +ifndef CEDEV +$(error CEDEV environment path variable is not set) +endif -include $(CEDEV)/include/.makefile +include $(CEDEV)/meta/makefile.mk # ----------------------------