2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Makefile

32 lines
1.4 KiB
Makefile
Raw Normal View History

2015-01-17 12:21:16 -05:00
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)
2015-01-25 10:13:53 -05:00
WPILIB=/var/frc/wpilib
2015-01-17 12:21:16 -05:00
EXEC=bin/FRCUserProgram
CLEANSER=rm -r
all : $(OBJECTS)
if [ ! -d bin ];then mkdir bin; fi
2015-01-17 12:21:16 -05:00
$(CC) -L$(WPILIB)/lib $(LDFLAGS) -o $(EXEC) $(OBJECTS) -lwpi
%.o : %.cpp
$(CC) $(CFLAGS) -I$(WPILIB)/include $^ -o $@
clean:
$(CLEANSER) $(OBJECTS) bin/FRCUserProgram
deploy: all
2015-01-29 14:53:11 -05:00
@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
2015-01-25 10:13:53 -05:00
@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'
2015-01-17 12:21:16 -05:00
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