unlimited-storage

YouTube filesystem tool for uploading arbitrary data to the service
git clone git://git.laack.co/unlimited-storage.git
Log | Files | Refs | README

Makefile (343B)


      1 debug:
      2 	g++ -Wall -oO src/chunk.cpp src/encode.cpp -o build/debugEncode.out -DDEBUG
      3 	g++ -Wall -oO src/chunk.cpp src/decode.cpp -o build/debugDecode.out -DDEBUG
      4 
      5 release:
      6 	g++ -Wall -O2 src/chunk.cpp src/encode.cpp -o build/encode.out -DRELEASE
      7 	g++ -Wall -O2 src/chunk.cpp src/decode.cpp -o build/decode.out -DRELEASE
      8 
      9 clean:
     10 	rm -rf build/*