mirror of
https://github.com/gryf/wmaker.git
synced 2026-01-10 15:54:17 +01:00
18 lines
323 B
Makefile
18 lines
323 B
Makefile
|
|
all: WINGs.c
|
|
python setup.py build
|
|
ln -s `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
|
|
|