|
|
@ -3,15 +3,22 @@ include ../Makefile.conf |
|
|
|
YML2_FILE=py_module.yml2 |
|
|
|
YSL2_FILE=$(shell pEp_acid_gen-config) |
|
|
|
PYBIND11_FILE=py_module.pybind11 |
|
|
|
DEBUG_AST_FILE=adapter_main.hh.ast.json |
|
|
|
DEBUG_ACID_FILE=adapter_main.hh.acid.json |
|
|
|
DEBUG_YML_FILE=adapter_main.hh.acid.yml |
|
|
|
|
|
|
|
$(info -----SYNTH_SHED GEN----) |
|
|
|
$(info -----_gen GEN----) |
|
|
|
$(info YML2_FILE $(YML2_FILE)) |
|
|
|
$(info YSL2_FILE $(YSL2_FILE)) |
|
|
|
$(info CC_FILE $(PYBIND11_FILE)) |
|
|
|
|
|
|
|
.PHONY = yml pybind11 |
|
|
|
.PHONY = all yml pybind |
|
|
|
|
|
|
|
all: $(PYBIND11_FILE) |
|
|
|
all: pybind |
|
|
|
|
|
|
|
yml: $(YML2_FILE)) |
|
|
|
|
|
|
|
pybind: $(PYBIND11_FILE) |
|
|
|
|
|
|
|
$(YML2_FILE): config.json |
|
|
|
pEp_acid_gen $^ |
|
|
@ -22,4 +29,7 @@ $(PYBIND11_FILE) : $(YML2_FILE) |
|
|
|
clean: |
|
|
|
rm -f $(YML2_FILE) |
|
|
|
rm -f $(PYBIND11_FILE) |
|
|
|
rm -f $(DEBUG_AST_FILE) |
|
|
|
rm -f $(DEBUG_ACID_FILE) |
|
|
|
rm -f $(DEBUG_YML_FILE) |
|
|
|
|
|
|
|