diff options
| author | Mengchi Zhang <[email protected]> | 2019-05-20 09:34:29 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-05-20 09:34:29 -0400 |
| commit | ab1221c14fa548404d4012f30399cb23a892f30c (patch) | |
| tree | 3b47b5c352cac13519557d983ef302b0fcc6a07a /cuobjdump_to_ptxplus/Makefile | |
| parent | 0a48acad6390fb9434b82b6dd66ab6625a83a848 (diff) | |
| parent | 579047c1dd9fec1b69e7904aeb6a25553c8dbd69 (diff) | |
Merge pull request #3 from echoedit/dev
reentrant ptx parser
Diffstat (limited to 'cuobjdump_to_ptxplus/Makefile')
| -rw-r--r-- | cuobjdump_to_ptxplus/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cuobjdump_to_ptxplus/Makefile b/cuobjdump_to_ptxplus/Makefile index 242a066..e95136a 100644 --- a/cuobjdump_to_ptxplus/Makefile +++ b/cuobjdump_to_ptxplus/Makefile @@ -27,11 +27,11 @@ $(OUTPUT_DIR)/cuobjdump_to_ptxplus: $(OUTPUT_DIR)/cuobjdumpInst.o $(OUTPUT_DIR)/ ${LD} ${LDFLAGS} -o $@ $(OUTPUT_DIR)/cuobjdumpInst.o $(OUTPUT_DIR)/cuobjdumpInstList.o $(OUTPUT_DIR)/cuobjdump_to_ptxplus.o $(PTX_PARSER_OBJECTS) $(SASS_PARSER_OBJECTS) $(ELF_PARSER_OBJECTS) $(HEADER_PARSER_OBJECTS) -$(OUTPUT_DIR)/lex.ptx_.c : ../src/cuda-sim/ptx.l - ${LEX} ${LEXFLAGS} -o$(OUTPUT_DIR)/lex.ptx_.c ../src/cuda-sim/ptx.l +$(OUTPUT_DIR)/lex.ptx_.c : ptx.l + ${LEX} ${LEXFLAGS} -o$(OUTPUT_DIR)/lex.ptx_.c ptx.l -$(OUTPUT_DIR)/ptx.tab.c : ../src/cuda-sim/ptx.y - ${YACC} ${YFLAGS} --name-prefix=ptx_ -v ../src/cuda-sim/ptx.y --file-prefix=$(OUTPUT_DIR)/ptx +$(OUTPUT_DIR)/ptx.tab.c : ptx.y + ${YACC} ${YFLAGS} --name-prefix=ptx_ -v ptx.y --file-prefix=$(OUTPUT_DIR)/ptx $(OUTPUT_DIR)/ptx.tab.h :$(OUTPUT_DIR)/ptx.tab.c |
