mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 12:28:22 +01:00
- Misc fixes. - Improved a bit the python wrapper. - Build po files before 'make install'
18 lines
324 B
Makefile
18 lines
324 B
Makefile
|
|
all: WINGs.c
|
|
python setup.py build
|
|
ln -sf `find build/ -name wings.so` .
|
|
|
|
install: WINGs.c
|
|
python setup.py install
|
|
|
|
clean:
|
|
rm -rf build dist WINGs.c *.o *~ *.so MANIFEST wings.py *.pyc *.pyo core
|
|
|
|
dist:
|
|
python setup.py sdist
|
|
|
|
WINGs.c: WINGs.i
|
|
swig -python -noproxy `get-wings-flags --cflags` -I.. -o WINGs.c WINGs.i
|
|
|