diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2005-04-12 03:26:56 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2005-04-12 03:26:56 +0000 |
commit | c3d8037aeba75366ed06e02fbc981e15b46e7d0a (patch) | |
tree | 6074bae79118b7d7d4d3d3a8ac0a4dcd65f18f8b /games/fuhquake | |
parent | b286f01b6c3af5d674e10da33f8eda0c2011007b (diff) |
Notes
Diffstat (limited to 'games/fuhquake')
-rw-r--r-- | games/fuhquake/files/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/fuhquake/files/Makefile b/games/fuhquake/files/Makefile index 589bfc987e0f..bb65bf3408c8 100644 --- a/games/fuhquake/files/Makefile +++ b/games/fuhquake/files/Makefile @@ -18,7 +18,7 @@ DO_CFLAGS += -DNO_WINDOWED_MOUSE .undef WITHOUT_X86_ASM .endif -.if ${ARCH} == "i386" && !defined(WITHOUT_X86_ASM) +.if ${MACHINE_ARCH} == "i386" && !defined(WITHOUT_X86_ASM) DO_CFLAGS += -Did386 .endif @@ -116,7 +116,7 @@ CL_COMMON_OBJS = \ rulesets.o \ utils.o -.if ${ARCH} == "i386" && !defined(WITHOUT_X86_ASM) +.if ${MACHINE_ARCH} == "i386" && !defined(WITHOUT_X86_ASM) CL_COMMON_AS_OBJS = \ cl_math.o \ math.o \ @@ -154,7 +154,7 @@ CL_SOFT_OBJS = \ r_surf.o \ r_vars.o -.if ${ARCH} == "i386" && !defined(WITHOUT_X86_ASM) +.if ${MACHINE_ARCH} == "i386" && !defined(WITHOUT_X86_ASM) CL_SOFT_AS_OBJS = \ d_draw.o \ d_draw16.o \ @@ -192,7 +192,7 @@ CL_GLX_OBJS = \ CL_SVGA_OBJS = vid_svgalib.o -.if ${ARCH} == "i386" && !defined(WITHOUT_X86_ASM) +.if ${MACHINE_ARCH} == "i386" && !defined(WITHOUT_X86_ASM) CL_SVGA_AS_OBJS = d_copy.o .endif |