summaryrefslogtreecommitdiff
path: root/ioq3-r437/src/tools/asm/Makefile
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2005-12-10 03:08:56 +0000
committerTim Angus <tim@ngus.net>2005-12-10 03:08:56 +0000
commit3b447421efc76ba76fbdae62f893fc6916af5433 (patch)
tree035963614a2e6333b6d38667b5142c2c0e7863c7 /ioq3-r437/src/tools/asm/Makefile
parent08446c16acbbb9a9d12fccb21e27cfa29d076e77 (diff)
* Well I fucked that up then...
Diffstat (limited to 'ioq3-r437/src/tools/asm/Makefile')
-rw-r--r--ioq3-r437/src/tools/asm/Makefile44
1 files changed, 0 insertions, 44 deletions
diff --git a/ioq3-r437/src/tools/asm/Makefile b/ioq3-r437/src/tools/asm/Makefile
deleted file mode 100644
index 0d64f14d..00000000
--- a/ioq3-r437/src/tools/asm/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# yeah, couldn't do more simple really
-
-PLATFORM=$(shell uname|sed -e s/_.*//|tr A-Z a-z)
-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)