summaryrefslogtreecommitdiffstats
path: root/kdvi/make/misc.make
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit47d455dd55be855e4cc691c32f687f723d9247ee (patch)
tree52e236aaa2576bdb3840ebede26619692fed6d7d /kdvi/make/misc.make
downloadtdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz
tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdvi/make/misc.make')
-rw-r--r--kdvi/make/misc.make31
1 files changed, 31 insertions, 0 deletions
diff --git a/kdvi/make/misc.make b/kdvi/make/misc.make
new file mode 100644
index 00000000..7ee38cca
--- /dev/null
+++ b/kdvi/make/misc.make
@@ -0,0 +1,31 @@
+# misc.make -- cleaning, etc.
+TAGS: *.c *.h
+ if pwd | grep kpathsea >/dev/null; then \
+ etags *.c *.h; else etags -i $(kpathsea_dir)/TAGS *.c *.h; fi
+
+mostlyclean::
+ rm -f *.o $(program) $(programs) squeeze $(library).a
+
+clean:: mostlyclean
+ rm -f *.dvi *.lj
+
+distclean:: clean
+ rm -f Makefile MakeTeXPK *.pool
+ rm -f config.status config.log config.cache c-auto.h
+
+# Although we can remake configure and c-auto.h.in, we don't remove
+# them, since many people may lack Autoconf. Use configclean for that.
+realclean:: distclean
+ rm -f TAGS *.info*
+
+extraclean::
+ rm -f *.aux *.bak *.bbl *.blg *.dvi *.log *.orig *.pl *.rej
+ rm -f *.i *.s *.tfm *.vf *.vpl *\#* *gf *pk *~
+ rm -f CONTENTS.tex a.out core mfput.* texput.*
+
+configclean:
+ rm -f configure c-auto.h.in c-auto.h
+
+# Prevent GNU make 3.[59,63) from overflowing arg limit on system V.
+.NOEXPORT:
+# End of misc.make.