2003-03-14 Charles Iliya Krempeaux <charles@reptile.ca>
* sources/makefile : Added a "distclean" rule, so that typing it will remove any source code directories, and their contents. (This works by just deleting all the subdirectories. Except for "CVS" of course.) svn path=/trunk/gtk-sharp/; revision=12546
This commit is contained in:
parent
9b0fec6fb3
commit
94f05965a8
2 changed files with 15 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2003-03-14 Charles Iliya Krempeaux <charles@reptile.ca>
|
||||
|
||||
* sources/makefile : Added a "distclean" rule, so
|
||||
that typing it will remove any source code directories,
|
||||
and their contents. (This works by just deleting all
|
||||
the subdirectories. Except for "CVS" of course.)
|
||||
|
||||
2003-03-14 Charles Iliya Krempeaux <charles@reptile.ca>
|
||||
|
||||
* sample/Makefile.in : Modified it to make it so "make clean"
|
||||
|
|
|
@ -31,4 +31,11 @@ get-source-code:
|
|||
ln -f -s ../gdk/gdkpixbuf.h gtk+-2.0.5/gdk-pixbuf/gdkpixbuf.h
|
||||
ln -f -s ../gdk/gdkpixbuf-render.c gtk+-2.0.5/gdk-pixbuf/gdkpixbuf-render.c
|
||||
|
||||
|
||||
distclean:
|
||||
for i in `ls`; do \
|
||||
if test -d $$i; then \
|
||||
if test 'CVS' != $$i; then \
|
||||
rm -Rf $$i; \
|
||||
fi; \
|
||||
fi; \
|
||||
done;
|
||||
|
|
Loading…
Reference in a new issue