Commit 25b14229f1a8a3deefdf4a74c4cadf6057bf6d78

Werner Lemberg 2007-06-03T19:53:02

More OBJ_DIR.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 @@ LIBS = -lm \
        -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