Skip to content

Commit

Permalink
makefiles / software: finish - -> _ rename
Browse files Browse the repository at this point in the history
  • Loading branch information
rroohhh committed Jun 22, 2020
1 parent 1b3f1c1 commit 2abfb84
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion makefiles/in_chroot/requirements_pacman.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ devmem
i2c-tools
cmake
bc
## axiom-picture-snap.sh
## axiom_picture_snap.sh
dcraw
imagemagick
# control daemon uses ninja now
Expand Down
2 changes: 1 addition & 1 deletion software/configs/gen_etc_issue.service
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Before=systemd-user-sessions.service

[Service]
Type=oneshot
ExecStart=/usr/axiom/script/axiom-gen-etc-issue.sh
ExecStart=/usr/axiom/script/axiom_gen_etc_issue.sh
KillMode=process

[Install]
Expand Down
2 changes: 1 addition & 1 deletion software/processing_tools/lut_conf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lut_conf.static : lut_conf.o

install:
$(STRIP) $(TARGETS)
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom-$$TARGET; chmod u+s $$TARGET; done
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom_$$TARGET; chmod u+s $$TARGET; done

clean:
rm -f *.o
Expand Down
2 changes: 1 addition & 1 deletion software/processing_tools/mimg/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LDLIBS += -lm

install:
$(STRIP) $(TARGETS)
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom-$$TARGET; chmod u+s $$TARGET; done
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom_$$TARGET; chmod u+s $$TARGET; done
mkdir -p /opt/
ln -sf $$(pwd)/overlays /opt/overlays

Expand Down
8 changes: 4 additions & 4 deletions software/scripts/rcn_validation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ cd $(dirname $(realpath $0)) # change into script dir

export BETA=192.168.1.101 # replace by your camera IP

ssh root@$BETA "axiom-rcn-clear"
ssh root@$BETA "axiom-snap -2 -b -r -e 10ms" > dark-check-1.raw12
ssh root@$BETA "axiom_rcn-clear"
ssh root@$BETA "axiom_snap -2 -b -r -e 10ms" > dark-check-1.raw12

ssh root@$BETA "axiom-rcn-darkframe darkframe-x1.pgm"
ssh root@$BETA "axiom-snap -2 -b -r -e 10ms" > dark-check-2.raw12
ssh root@$BETA "axiom_rcn_darkframe darkframe-x1.pgm"
ssh root@$BETA "axiom_snap -2 -b -r -e 10ms" > dark-check-2.raw12

./raw2dng --no-darkframe --check-darkframe dark-check-1.raw12
./raw2dng --no-darkframe --check-darkframe dark-check-2.raw12
Expand Down
2 changes: 1 addition & 1 deletion software/sensor_tools/hist/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hist.static : hist.o

install:
$(STRIP) $(TARGETS)
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom-$$TARGET; chmod u+s $$TARGET; done
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom_$$TARGET; chmod u+s $$TARGET; done

clean:
rm -f *.o
Expand Down
2 changes: 1 addition & 1 deletion software/sensor_tools/perf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ perf : perf.o

install:
$(STRIP) $(TARGETS)
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom-$$TARGET; chmod u+s $$TARGET; done
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom_$$TARGET; chmod u+s $$TARGET; done

clean:
rm -f *.o
Expand Down
2 changes: 1 addition & 1 deletion software/sensor_tools/snap/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ lut_conf.static : lut_conf.o

install:
$(STRIP) $(TARGETS)
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom-$$TARGET; chmod u+s $$TARGET; done
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom_$$TARGET; chmod u+s $$TARGET; done

clean:
rm -f *.o
Expand Down
2 changes: 1 addition & 1 deletion software/sensor_tools/train/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ train.o : train.c cmv_reg.h

install:
$(STRIP) $(TARGETS)
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom-$$TARGET; chmod u+s $$TARGET; done
for TARGET in $(TARGETS); do ln -sf $$(pwd)/$$TARGET /usr/axiom/bin/axiom_$$TARGET; chmod u+s $$TARGET; done

clean:
rm -f *.o
Expand Down

0 comments on commit 2abfb84

Please sign in to comment.