Skip to content
Snippets Groups Projects
Commit 21439484 authored by Stephen A. Wood's avatar Stephen A. Wood Committed by Stephen Wood
Browse files

Make linkdef lines for Scaler classes correct in Makefile

parent 62a2521d
No related branches found
No related tags found
No related merge requests found
......@@ -220,6 +220,8 @@ $(LINKDEF): $(LINKDEF)_preamble $(LINKDEF)_postamble $(SRC)
@cat $(LINKDEF)_preamble > $(LINKDEF)
@echo $(SRC) | tr ' ' '\n' | sed -e "s|src/|#pragma link C++ class |" | sed -e "s|.cxx|+;|" >> $(LINKDEF)
@cat $(LINKDEF)_postamble >> $(LINKDEF)
@sed -e "s/class Scaler/class Decoder::Scaler/" $(LINKDEF) > $(LINKDEF)_tmp
@mv $(LINKDEF)_tmp $(LINKDEF)
install: all
cp -p $(USERLIB) $(HOME)/cue/SRC/ana
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment