File: Linux.conf

package info (click to toggle)
pycg 0.14.1-2
  • links: PTS, VCS
  • area: contrib
  • in suites: squeeze
  • size: 184 kB
  • ctags: 17
  • sloc: sh: 124; makefile: 71; python: 28
file content (16 lines) | stat: -rw-r--r-- 444 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
INCLUDES=-I/usr/include/python2.5 -Iinclude -I.
SWIG=swig
LIBS=-lCgGL -lCg -lGL -lpython2.5
SOEXT=so
COMPILE=gcc -fpic -g -Wall 
LINK=gcc -fpic -g -Wall -shared


dist: SDIR=PyCg-$(shell python setup.py --version).linux-i686-py2.5
dist: all
	mkdir $(SDIR)
	mkdir $(SDIR)/Cg
	cp Cg.py $(SDIR)/Cg/__init__.py
	cp setup.py _Cg.$(SOEXT) /usr/lib/libCg.so /usr/lib/libCgGL.so $(SDIR)
	tar zcvf $(SDIR).tar.gz $(SDIR)
	rm -rf $(SDIR)