File: linux.sh

package info (click to toggle)
crossguid 0.0%2Bgit200150803-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 236 kB
  • sloc: cpp: 321; xml: 48; sh: 28; makefile: 23; java: 18
file content (10 lines) | stat: -rwxr-xr-x 239 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#!/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