More OBJ_DIR.
diff --git a/src/tools/ftrandom/Makefile b/src/tools/ftrandom/Makefile
index a00dd16..28e67f3 100644
--- a/src/tools/ftrandom/Makefile
+++ b/src/tools/ftrandom/Makefile
@@ -25,9 +25,9 @@
        -lfreetype \
        -lz
 
-all: ftrandom
+all: $(OBJ_DIR)/ftrandom
 
-ftrandom: $(SRC_DIR)/ftrandom.c
+$(OBJ_DIR)/ftrandom: $(SRC_DIR)/ftrandom.c
 	$(CC) -o $(OBJ_DIR)/ftrandom $(CFLAGS) $(SRC_DIR)/ftrandom.c $(LIBS)
 
 # EOF