aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools/asm/Makefile
blob: ec314f11bef4368f14098af4b6ae5e137094ae5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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

CC=gcc
CFLAGS=-O2 -Wall -Werror -fno-strict-aliasing

default:	q3asm

q3asm:	q3asm.c cmdlib.c
	$(CC) $(CFLAGS) -o $@ $^

clean:
	rm -f q3asm *~ *.o

install: default
	install -s -m 0755 q3asm$(BINEXT) ../

uninstall:
	-rm ../q3asm$(BINEXT)