irena-arm/hertz/Makefile
hertz 8dc9231584 nmhertz: late commit
git-svn-id: svn+ssh://asterix.ieap.uni-kiel.de/home/subversion/stephan/solo/eda/arm@7846 bc5caf13-1734-44f8-af43-603852e9ee25
2019-11-22 13:18:50 +00:00

23 lines
459 B
Makefile

PATH:=.:$(PATH)
%.NM: %.b64 ./nm64file
./nm64file --base64 < $< > $@
%.NM: %.dat ./nm64file
./nm64file < $< > $@
%.P: %.dat ./nm64file NM64.awk ../pressure.awk
./nm64file < $< | ./NM64.awk '{doPressure()}' > $@
%.ADC: %.dat ./nm64file
./nm64file < $< | grep ^A > $@
IRENArc.awk:
touch $@
%.HK: %.NM ../irena/IRENA.awk IRENArc.awk
$(word 2,$^) 'isHK(){doHK()}' $< > $@
%.HRZ: %.dat ./nm64file ./HERTZ.awk
$(word 2, $^) < $< | $(word 3, $^) > $@