Codebase list crossguid / ed58dd17-3a98-4d09-a344-32954a5fec71/main linux.sh
ed58dd17-3a98-4d09-a344-32954a5fec71/main

Tree @ed58dd17-3a98-4d09-a344-32954a5fec71/main (Download .tar.gz)

linux.sh @ed58dd17-3a98-4d09-a344-32954a5fec71/main

476519d
 
 
 
 
 
 
 
 
 
#!/usr/bin/env bash

./clean.sh

g++ -c guid.cpp -o guid.o -Wall -std=c++11 -DGUID_LIBUUID
g++ -c test.cpp -o test.o -Wall -std=c++11
g++ -c testmain.cpp -o testmain.o -Wall
g++ test.o guid.o testmain.o -o test -luuid
chmod +x test
./test