aboutsummaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
authoralepulver <alepulver@FreeBSD.org>2006-08-09 00:43:24 +0800
committeralepulver <alepulver@FreeBSD.org>2006-08-09 00:43:24 +0800
commit2e581548d52347b691ef0a6b5683f5fc651dd530 (patch)
treeed655014372d8b94fd9160156d1479c04f8cd728 /games
parent51e7e42cfc5775c9718b7fb5cd3ce270a4150066 (diff)
downloadfreebsd-ports-gnome-2e581548d52347b691ef0a6b5683f5fc651dd530.tar.gz
freebsd-ports-gnome-2e581548d52347b691ef0a6b5683f5fc651dd530.tar.zst
freebsd-ports-gnome-2e581548d52347b691ef0a6b5683f5fc651dd530.zip
- Fix wrong target names from my last patch.
Diffstat (limited to 'games')
-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