From 72dc3da821c616b97246e6b7cf5587c2e936d144 Mon Sep 17 00:00:00 2001 From: tma Date: Sat, 29 Oct 2005 22:05:20 +0000 Subject: * Beginnings of Solaris support from Vincent S. Cojot * Note this patch also splits USE_SDL into USE_SDL_VIDEO and USE_SDL_AUDIO git-svn-id: svn://svn.icculus.org/quake3/trunk@199 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/tools/asm/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'code/tools/asm') diff --git a/code/tools/asm/Makefile b/code/tools/asm/Makefile index a6202ae..852afa6 100644 --- a/code/tools/asm/Makefile +++ b/code/tools/asm/Makefile @@ -7,6 +7,12 @@ else BINEXT= endif +ifeq ($(PLATFORM),SunOS) + INSTALL=ginstall +else + INSTALL=install +endif + CC=gcc Q3ASM_CFLAGS=-O2 -Wall -Werror -fno-strict-aliasing @@ -19,7 +25,7 @@ clean: rm -f q3asm *~ *.o install: default - install -s -m 0755 q3asm$(BINEXT) ../ + $(INSTALL) -s -m 0755 q3asm$(BINEXT) ../ uninstall: rm -f ../q3asm$(BINEXT) -- cgit v1.2.3