diff options
| author | terminaldweller <thabogre@gmail.com> | 2021-07-10 22:56:23 +0000 | 
|---|---|---|
| committer | terminaldweller <thabogre@gmail.com> | 2021-07-10 22:56:23 +0000 | 
| commit | 4ed623d52ff73c70be739a476daa12f58ddf7e46 (patch) | |
| tree | 0e11c7efa44dee99f5efaf0ebcac80087d3fec80 /makefilecpp | |
| parent | update (diff) | |
| download | scripts-4ed623d52ff73c70be739a476daa12f58ddf7e46.tar.gz scripts-4ed623d52ff73c70be739a476daa12f58ddf7e46.zip | |
switch between vim and tmux with c-w c-w. feels comfy. changed diasm into actual asm for c and c++ in the makefiles. some more things for vim.
Diffstat (limited to 'makefilecpp')
| -rw-r--r-- | makefilecpp | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/makefilecpp b/makefilecpp index 8855fa8..7bcb7fa 100644 --- a/makefilecpp +++ b/makefilecpp @@ -29,7 +29,7 @@ EXCLUSION_LIST='xxxxxx'  OBJ_LIST:=$(patsubst %.cpp, %.o, $(shell find . -name '*.cpp' | grep -Ev $(EXCLUSION_LIST)))  OBJ_COV_LIST:=$(patsubst %.cpp, %.ocov, $(shell find . -name '*.cpp' | grep -Ev $(EXCLUSION_LIST)))  OBJ_DBG_LIST:=$(patsubst %.cpp, %.odbg, $(shell find . -name '*.cpp' | grep -Ev $(EXCLUSION_LIST))) -ASM_LIST:=$(patsubst %.cpp, %.dis, $(shell find . -name '*.cpp' | grep -Ev $(EXCLUSION_LIST))) +ASM_LIST:=$(patsubst %.cpp, %.s, $(shell find . -name '*.cpp' | grep -Ev $(EXCLUSION_LIST)))  WASM_LIST:=$(patsubst %.cpp, %.wasm, $(shell find . -name '*.cpp' | grep -Ev $(EXCLUSION_LIST)))  WAST_LIST:=$(patsubst %.cpp, %.wast, $(shell find . -name '*.cpp' | grep -Ev $(EXCLUSION_LIST)))  IR_LIST:=$(patsubst %.cpp, %.ir, $(shell find . -name '*.cpp' | grep -Ev $(EXCLUSION_LIST))) @@ -154,8 +154,9 @@ tags:$(SRCS)  		sed -e 's/[\\ ]/\n/g'|sed -e '/^$$/d' -e '/\.o:[ \t]*$$/d'|\  		ctags -L - --c++-kinds=+p --fields=+iaS --extra=+q) -%.dis: %.o -	objdump -r -d -M intel -S $< > $@ +%.s: %.cpp +	$(CXX) -S $< -o $@ +	# objdump -r -d -M intel -S $< > $@  %.ir: %.cpp  	$(CXX) -emit-llvm -S -o $@ $< @@ -188,7 +189,7 @@ test: $(TARGET)  	$(TARGET)  run: $(TARGET) -	$(TARGET) +	"./$(TARGET)"  valgrind: $(TARGET)  	- valgrind --track-origins=yes --leak-check=full --show-leak-kinds=all $(TARGET) | 
