Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
752cd340
Commit
752cd340
authored
Jan 28, 2003
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Integrate stupid_clean directly into the Makefile.
Remove the stupid_clean script.
parent
37a671f3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
12 deletions
+2
-12
Makefile
Makefile
+2
-1
stupid_clean
stupid_clean
+0
-11
No files found.
Makefile
View file @
752cd340
...
...
@@ -9,4 +9,5 @@ test:
$(PYTHON)
utilities/testrunner.py
$(TESTOPTS)
clean
:
./stupid_clean
find
.
-name
'*.o'
-o
-name
'*.so'
-o
-name
'*.py[co]'
\
-o
-name
'core*'
| xargs
rm
-f
stupid_clean
deleted
100755 → 0
View file @
37a671f3
#! /bin/sh
# "python setup.py clean" doesn't work with a --inplace build, so use
# this instead (copied from the Zope3 tree).
# XXX Note! this won't work for filenames that have spaces in them!
# Unfortunately find -print0 and xargs -0 don't exist on
# some platforms (Solaris for instance) so we can't use them...
find
.
-name
'*.o'
-o
-name
'*.so'
-o
-name
'*.py[co]'
\
-o
-name
'core*'
| xargs
rm
-f
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment