summaryrefslogtreecommitdiff
path: root/src/tools/asm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/asm/Makefile')
-rw-r--r--src/tools/asm/Makefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/tools/asm/Makefile b/src/tools/asm/Makefile
new file mode 100644
index 0000000..a788386
--- /dev/null
+++ b/src/tools/asm/Makefile
@@ -0,0 +1,43 @@
+# 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 -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)