diff options
author | scop <scop> | 2005-04-18 19:32:35 +0000 |
---|---|---|
committer | scop <scop> | 2005-04-18 19:32:35 +0000 |
commit | d311dde1a29bf46cc962502a1859cc7410004aa4 (patch) | |
tree | 60534433477027d77bf154f3fcb63f559b0afe09 /Makefile | |
parent | 0b4b00ec6cb8af354b270b4c8356e453fa0c0d5b (diff) | |
download | vdr-plugin-dxr3-d311dde1a29bf46cc962502a1859cc7410004aa4.tar.gz vdr-plugin-dxr3-d311dde1a29bf46cc962502a1859cc7410004aa4.tar.bz2 |
Add indent target.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.1.2.13 2005/04/17 21:40:44 scop Exp $ +# $Id: Makefile,v 1.1.2.14 2005/04/18 19:32:35 scop Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -107,3 +107,6 @@ dist: clean clean: @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ \#* + +indent: + emacs -batch --eval '(dolist (file command-line-args-left) (progn (find-file file) (c-indent-region (point-min) (point-max)) (save-buffer)))' *.h *.c |