mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
32 lines
1.4 KiB
Makefile
32 lines
1.4 KiB
Makefile
REMOTEIP=10.20.59.2
|
|
CC=arm-frc-linux-gnueabi-g++
|
|
CFLAGS=-std=c++11 -O0 -g3 -Wall -c -fmessage-length=0
|
|
LDFLAGS=-Wl,-rpath,/opt/GenICam_v2_3/bin/Linux_armv7-a
|
|
SOURCES=$(shell find -type f -name "*.cpp")
|
|
OBJECTS=$(SOURCES:.cpp=.o)
|
|
WPILIB=/var/frc/wpilib
|
|
EXEC=bin/FRCUserProgram
|
|
CLEANSER=rm -r
|
|
|
|
all : $(OBJECTS)
|
|
if [ ! -d bin ];then mkdir bin; fi
|
|
$(CC) -L$(WPILIB)/lib $(LDFLAGS) -o $(EXEC) $(OBJECTS) -lwpi
|
|
|
|
%.o : %.cpp
|
|
$(CC) $(CFLAGS) -I$(WPILIB)/include $^ -o $@
|
|
|
|
clean:
|
|
$(CLEANSER) $(OBJECTS) bin/FRCUserProgram
|
|
|
|
deploy: all
|
|
@cat bin/FRCUserProgram | ssh admin@$(REMOTEIP) 'cat > /home/lvuser/FRCUserProgram2&&rm /home/lvuser/FRCUserProgram;mv /home/lvuser/FRCUserProgram2 /home/lvuser/FRCUserProgram&&. /etc/profile.d/natinst-path.sh;chmod a+x /home/lvuser/FRCUserProgram'
|
|
|
|
debug: all
|
|
@cat bin/FRCUserProgram | ssh admin@$(REMOTEIP) 'cat > /home/lvuser/FRCUserProgram2&&rm /home/lvuser/FRCUserProgram;mv /home/lvuser/FRCUserProgram2 /home/lvuser/FRCUserProgram&&. /etc/profile.d/natinst-path.sh;chmod a+x /home/lvuser/FRCUserProgram;/home/lvuser/run.sh'
|
|
|
|
putkey:
|
|
@test -d ~/.ssh||mkdir ~/.ssh;test -f ~/.ssh/id_rsa||ssh-keygen -t rsa -f ~/.ssh/id_rsa -b 4096 -q -N '';cat ~/.ssh/id_rsa.pub|ssh -v admin@$(REMOTEIP) 'cat >> /tmp/key;mkdir -p ~/.ssh;cat /tmp/key >> ~/.ssh/authorized_keys;rm /tmp/key'
|
|
|
|
updatemakefile:
|
|
@curl -s https://raw.githubusercontent.com/int0x191f2/nameless/master/configure.sh | sh
|