You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
552 B
20 lines
552 B
##
|
|
# radio_plus_plus
|
|
#
|
|
# @MakeFile
|
|
# @version 0.1
|
|
|
|
all: compile install config
|
|
|
|
compile:
|
|
g++ --verbose -o radio *.cpp *.h `wx-config --cxxflags --libs` -lvlc -lcurl -ljsoncpp -fgcse-after-reload -fipa-cp-clone -floop-interchange -floop-unroll-and-jam -fpeel-loops -fpredictive-commoning -fsplit-loops -fsplit-paths -ftree-loop-distribution -ftree-partial-pre -funswitch-loops -fvect-cost-model=dynamic -fversion-loops-for-strides
|
|
|
|
install:
|
|
cp -v radio /usr/local/bin
|
|
|
|
config:
|
|
mkdir -p ~/.config/radio++
|
|
touch ~/.config/radio++/sender
|
|
|
|
# end
|