summaryrefslogtreecommitdiff
path: root/progs/slang
diff options
context:
space:
mode:
authorMichal Krol <mjkrol@gmail.org>2006-07-30 14:33:53 +0000
committerMichal Krol <mjkrol@gmail.org>2006-07-30 14:33:53 +0000
commitc26999fd2c01328694db38f92ee03f2984c63ef8 (patch)
tree165060df38aeab174c55b8fb2b13ee12178b0215 /progs/slang
parentd2ac9ab6eed1b42cd7d953a0d02fb5d20240024a (diff)
Fix dependencies.
Diffstat (limited to 'progs/slang')
-rw-r--r--progs/slang/Makefile20
1 files changed, 4 insertions, 16 deletions
diff --git a/progs/slang/Makefile b/progs/slang/Makefile
index 70d60594d2..1c602ce49c 100644
--- a/progs/slang/Makefile
+++ b/progs/slang/Makefile
@@ -41,27 +41,15 @@ vstest: vstest.o framework.o $(LIB_DEP)
# objects
#
-framework.o: framework.c
+framework.o: framework.c framework.h
$(CC) -c -I$(INCDIR) framework.c -o framework.o
-cltest.o: cltest.c
+cltest.o: cltest.c framework.h
$(CC) -c -I$(INCDIR) cltest.c -o cltest.o
-sotest.o: sotest.c
+sotest.o: sotest.c framework.h
$(CC) -c -I$(INCDIR) sotest.c -o sotest.o
-vstest.o: vstest.c
+vstest.o: vstest.c framework.h
$(CC) -c -I$(INCDIR) vstest.c -o vstest.o
-#
-# sources
-#
-
-framework.c: framework.h
-
-cltest.c: framework.h
-
-sotest.c: framework.h
-
-vstest.c: framework.h
-