fixed issues in MakeFile

This commit is contained in:
2021-06-17 22:17:44 +04:00
parent 0bf44cff4e
commit 29176b16ec

View File

@@ -2,17 +2,14 @@ SHELL := /bin/bash
install:
go build -o p2prc
echo '# Paths for p2p rendering and computation' >> ~/.bashrc
echo 'export P2PRC=${PWD}' >> ~/.bashrc
echo 'export PATH=${PWD}:$${PATH}' >> ~/.bashrc
source ~/.bashrc
./p2prc --SetDefaultConfig
echo '# Paths for p2p rendering and computation'
echo 'export P2PRC=${PWD}'
echo 'export PATH=${PWD}:$${PATH}'
build:
go build -o p2prc
config:
configfile:
./p2prc --SetDefaultConfig
run: