radio_plus_plus/Makefile

20 lines
552 B
Makefile

##
# 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