summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2010-07-16 07:47:55 -0800
committerTor Aamodt <[email protected]>2010-07-16 07:47:55 -0800
commit043791634414119a1708390b442ae201fe0d930c (patch)
treed7cfc753e2f9ffeae2c4d27817ce75568367de3c
parent7e7e98eda7ab893ee12b307a97ab5eaf23f63af9 (diff)
detect changes to .l and .y files
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 6834]
-rw-r--r--src/cuda-sim/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cuda-sim/Makefile b/src/cuda-sim/Makefile
index c0d245d..c03cb0e 100644
--- a/src/cuda-sim/Makefile
+++ b/src/cuda-sim/Makefile
@@ -112,16 +112,16 @@ ptxinfo.tab.o: ptxinfo.tab.c
lex.ptxinfo_.o: lex.ptxinfo_.c
$(CC) -c $(OPT) lex.ptxinfo_.c
-ptx.tab.c:
+ptx.tab.c: ptx.y
bison --name-prefix=ptx_ -v -d ptx.y
-ptxinfo.tab.c:
+ptxinfo.tab.c: ptxinfo.y
bison --name-prefix=ptxinfo_ -v -d ptxinfo.y
-lex.ptx_.c:
+lex.ptx_.c: ptx.l
flex ptx.l
-lex.ptxinfo_.c:
+lex.ptxinfo_.c: ptxinfo.l
flex ptxinfo.l
clean: