File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
DEST_DIR := "_hpp_"
2
- SERFILES := $(shell find $(INDIR ) /service -name "* .h" -o -name "* .hpp" -o -name "* .hxx")
3
- INCFILES := $(shell find $(INDIR ) /include -name "* .h" -o -name "* .hpp" -o -name "* .hxx")
4
- INTFILES := $(shell find $(INDIR ) /interface -name "* .h" -o -name "* .hpp" -o -name "* .hxx")
2
+ # SERFILES := $(shell find $(INDIR)/service -name "*.h" -o -name "*.hpp" -o -name "*.hxx")
3
+ INCFILES := $(shell find $(INDIR ) -name "* .h" -o -name "* .hpp" -o -name "* .hxx")
4
+ # INTFILES := $(shell find $(INDIR)/interface -name "*.h" -o -name "*.hpp" -o -name "*.hxx")
5
5
ALL_DIR := "_all_"
6
- SERALLFILES := $(shell find $(INDIR ) /service -name "* .h" -o -name "* .hpp" -o -name "* .hxx" -o -name "* .c" -o -name "* .cpp" -o -name "* .cxx")
7
- INCALLFILES := $(shell find $(INDIR ) /include -name "* .h" -o -name "* .hpp" -o -name "* .hxx" -o -name "* .c" -o -name "* .cpp" -o -name "* .cxx")
8
- INTALLFILES := $(shell find $(INDIR ) /interface -name "* .h" -o -name "* .hpp" -o -name "* .hxx" -o -name "* .c" -o -name "* .cpp" -o -name "* .cxx")
6
+ # SERALLFILES := $(shell find $(INDIR)/service -name "*.h" -o -name "*.hpp" -o -name "*.hxx" -o -name "*.c" -o -name "*.cpp" -o -name "*.cxx")
7
+ # INCALLFILES := $(shell find $(INDIR)/include -name "*.h" -o -name "*.hpp" -o -name "*.hxx" -o -name "*.c" -o -name "*.cpp" -o -name "*.cxx")
8
+ # INTALLFILES := $(shell find $(INDIR)/interface -name "*.h" -o -name "*.hpp" -o -name "*.hxx" -o -name "*.c" -o -name "*.cpp" -o -name "*.cxx")
9
9
# 절대 경로 변환
10
10
11
11
all :
49
49
# if [ -e plantuml.md ]; then cp -f plantuml.md ${OUTDIR}; fi
50
50
# docker run -it --user `id -u`:`id -g` -v `pwd`/_hpp_:/docker_in -v `realpath ${OUTDIR}`:/docker_out -v `pwd`:/docker_git -e DOCKER_IN=/docker_in -e DOCKER_OUT=/docker_out -e DOCKER_GIT=/docker_git -e DOCKER_MODULE=${MODULE} doxygen_perlmod_python:latest bash /docker_git/taf_run_in_docker.sh >> a.log
51
51
52
- copy : $(SERFILES ) $( INCFILES ) $( INTFILES )
52
+ copy : $(INCFILES )
53
53
@mkdir -p $(DEST_DIR )
54
54
cp $^ $(DEST_DIR )
55
55
You can’t perform that action at this time.
0 commit comments