summaryrefslogtreecommitdiff
path: root/src/tools/asm/Makefile
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2007-09-13 14:05:34 +0000
committerTim Angus <tim@ngus.net>2007-09-13 14:05:34 +0000
commit9b6e4553e45720183eee347fe0a8d03770ff4e6d (patch)
treed7e1ab66271aed70034cc21f3ee5b58515a0cee9 /src/tools/asm/Makefile
parentdf02ea4c36c45ef40e7b94a15f01c9af33da6b92 (diff)
* Merge of ioq3-r1178
Diffstat (limited to 'src/tools/asm/Makefile')
-rw-r--r--src/tools/asm/Makefile43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/tools/asm/Makefile b/src/tools/asm/Makefile
deleted file mode 100644
index 52f1060d..00000000
--- a/src/tools/asm/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-# yeah, couldn't do more simple really
-
-ifeq ($(PLATFORM),mingw32)
- BINEXT=.exe
-else
- BINEXT=
-endif
-
-ifeq ($(PLATFORM),sunos)
- INSTALL=ginstall
-else
- INSTALL=install
-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
- $(CC) $(Q3ASM_CFLAGS) -o $@ $^
-
-clean:
- rm -f q3asm *~ *.o
-
-install: default
- $(INSTALL) -s -m 0755 q3asm$(BINEXT) ../
-
-uninstall:
- rm -f ../q3asm$(BINEXT)