diff options
Diffstat (limited to 'code/tools/asm')
-rw-r--r-- | code/tools/asm/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/code/tools/asm/Makefile b/code/tools/asm/Makefile index 852afa6..0d64f14 100644 --- a/code/tools/asm/Makefile +++ b/code/tools/asm/Makefile @@ -16,6 +16,19 @@ endif CC=gcc Q3ASM_CFLAGS=-O2 -Wall -Werror -fno-strict-aliasing +ifeq ($(PLATFORM),darwin) + LCC_CFLAGS += -DMACOS_X=1 +endif + +ifndef USE_CCACHE + USE_CCACHE=0 +endif + +ifeq ($(USE_CCACHE),1) + CC := ccache $(CC) + CXX := ccache $(CXX) +endif + default: q3asm q3asm: q3asm.c cmdlib.c |