summaryrefslogtreecommitdiff
path: root/games/cube
diff options
context:
space:
mode:
authorAlejandro Pulver <alepulver@FreeBSD.org>2006-08-08 16:43:24 +0000
committerAlejandro Pulver <alepulver@FreeBSD.org>2006-08-08 16:43:24 +0000
commit2c6778fde1c2c08d1cce8694c4a9f62a8b51ff10 (patch)
treefeac0d8a89334677226653030523fbf79eff19e9 /games/cube
parentTry to fix on 4.x. (diff)
- Fix wrong target names from my last patch.
Notes
Notes: svn path=/head/; revision=170130
Diffstat (limited to 'games/cube')
-rw-r--r--games/cube/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/cube/Makefile b/games/cube/Makefile
index d1bc40fa485f..f2b5bfd1d2d4 100644
--- a/games/cube/Makefile
+++ b/games/cube/Makefile
@@ -42,7 +42,7 @@ IGNORE= needs at least one executable (CLIENT and DEDICATED)
.if defined(WITH_CLIENT)
USE_GL= yes
USE_SDL= image mixer sdl
-ALL_TARGET+= cube_client
+ALL_TARGET+= client
PLIST_SUB+= CLIENT=""
CUBE_BIN+= client
.else
@@ -50,7 +50,7 @@ PLIST_SUB+= CLIENT=""
.endif
.if defined(WITH_DEDICATED)
-ALL_TARGET+= cube_server
+ALL_TARGET+= server
PLIST_SUB+= DEDICATED=""
CUBE_BIN+= server
.else