udp2raw/makefile

8 lines
239 B
Makefile
Raw Normal View History

2017-07-14 13:32:37 +00:00
ccmips=mips-openwrt-linux-g++
all:
killall raw||true
sleep 1
2017-07-19 08:17:46 +00:00
g++ main.cpp -o raw -static -lrt -ggdb -I. aes.c md5.c encrypt.cpp -O3
2017-07-21 09:17:44 +00:00
# ${ccmips} -std=c++11 main.cpp -o rawmips -static -lrt -ggdb -I. aes.c md5.c encrypt.cpp -O3 -lstdc++
2017-07-14 13:32:37 +00:00