ocaml/tools/setignore

40 lines
1.0 KiB
Plaintext
Raw Normal View History

#!/bin/sh
#########################################################################
# #
# OCaml #
# #
# Damien Doligez, projet Gallium, INRIA Rocquencourt #
# #
# Copyright 2011 Institut National de Recherche en Informatique et #
# en Automatique. All rights reserved. This file is distributed #
# under the terms of the Q Public License version 1.0. #
# #
#########################################################################
(
cat <<EOF
*.o
*.a
*.so
*.obj
*.cm[ioxa]
*.cmx[as]
*.annot
*.result
*.byte
*.native
program
.depend
.depend.nt
.DS_Store
EOF
if [ -f .ignore ]; then cat .ignore; fi
) | svn propset svn:ignore -F - .