diff options
author | marha <marha@users.sourceforge.net> | 2010-12-25 19:10:23 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-12-25 19:10:23 +0000 |
commit | c2c3ce5abd338cb6345780cb86c30ca9f34a6562 (patch) | |
tree | e89335fcc835c7e567ce1018593733ffc1cf11f2 /dxtn/Makefile.old | |
parent | c6539c9f45372fb6518bff17a781effd654bd3f0 (diff) | |
download | vcxsrv-c2c3ce5abd338cb6345780cb86c30ca9f34a6562.tar.gz vcxsrv-c2c3ce5abd338cb6345780cb86c30ca9f34a6562.tar.bz2 vcxsrv-c2c3ce5abd338cb6345780cb86c30ca9f34a6562.zip |
Added sources of dxtn. See getsrc.btm used for getting the sources
Diffstat (limited to 'dxtn/Makefile.old')
-rw-r--r-- | dxtn/Makefile.old | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dxtn/Makefile.old b/dxtn/Makefile.old new file mode 100644 index 000000000..21b502ee7 --- /dev/null +++ b/dxtn/Makefile.old @@ -0,0 +1,14 @@ +libtxc_dxtn.so: txc_compress_dxtn.o txc_fetch_dxtn.o + gcc -O3 -Wall -pedantic -fPIC -lpthread -shared -o libtxc_dxtn.so txc_compress_dxtn.o txc_fetch_dxtn.o + +txc_compress_dxtn.o : txc_compress_dxtn.c txc_dxtn.h + gcc -c -O3 -Wall -pedantic -fPIC -o txc_compress_dxtn.o txc_compress_dxtn.c + +txc_fetch_dxtn.o : txc_fetch_dxtn.c txc_dxtn.h + gcc -c -O3 -Wall -pedantic -fPIC -o txc_fetch_dxtn.o txc_fetch_dxtn.c + +clean: + rm txc_fetch_dxtn.o txc_compress_dxtn.o libtxc_dxtn.so + +install: libtxc_dxtn.so + install libtxc_dxtn.so /usr/lib/ |