git-svn-id: svn+ssh://asterix.ieap.uni-kiel.de/home/subversion/stephan/solo/eda/arm@6773 bc5caf13-1734-44f8-af43-603852e9ee25
15 lines
251 B
Makefile
15 lines
251 B
Makefile
CFLAGS=-std=gnu99 -O3 -g
|
|
default: difile
|
|
|
|
%.ES: %.dat
|
|
./difile <$< >$@
|
|
|
|
HIST=FRED()
|
|
|
|
%.hist: %.ES
|
|
./DIRENA.awk 'BEGIN{$(HIST)};isPHA(){doHIST()}' $< >$@
|
|
|
|
%_xrays.hist: %.ES
|
|
./DIRENA.awk 'BEGIN{$(HIST)};isXray(){doHIST1(C)}' $< >$@
|
|
|
|
.PRECIOUS: %.ES
|