-
Notifications
You must be signed in to change notification settings - Fork 5
/
makefile
executable file
·41 lines (33 loc) · 944 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
DISTNO = venster-0.72
dist: clean
python setup.py bdist_wininst
src_dist: clean
cd ..; cp -R venster ${DISTNO}
- cd ../${DISTNO}; make clean_cvs
cd ..; zip -r ${DISTNO}.zip ${DISTNO}
mkdir dist
mv ../${DISTNO}.zip dist
rm -rf ../${DISTNO}
clean:
find -name '*~' -exec rm -rf {} \;
find -name '#*#' -exec rm -rf {} \;
find -name *.pyc -exec rm -rf {} \;
find -name *.patch -exec rm -rf {} \;
rm -rf dist
rm -rf build
cd test; rm -rf build
cd test; rm -rf dist
cd doc; rm -rf api
cd test/resdll/Release; rm -rf *.res
cd samples/app; rm -rf build
cd samples/app; rm -rf dist
cd samples/app; rm -rf sampleapp.installer.exe
clean_cvs:
find -name '.svn' -exec rm -rf {} \;
doc:
python make_doc.py
doc_dist:
#add --delete to remove unused files
rsync -C -azv -e ssh doc/ [email protected]:/home/groups/v/ve/venster/htdocs/htdocs
resdll:
cd test/resdll; NMAKE /f "resdll.mak" CFG="resdll - Win32 Release"