15 lines
265 B
Makefile
15 lines
265 B
Makefile
cfPath=config/motors
|
|
|
|
all: script_val
|
|
make -C config
|
|
|
|
|
|
script_val: SVmotors
|
|
|
|
|
|
SVmotors: $(cfPath)/motor_configuration.tcl
|
|
../mksim_config.tcl -f $(cfPath)/motor_configuration.tcl > script_validator/$(cfPath)/motor_configuration.tcl
|
|
|
|
clean:
|
|
make -C config clean
|