1#**************************************************************************
2#*                                                                        *
3#*                                 OCaml                                  *
4#*                                                                        *
5#*                 Xavier Clerc, SED, INRIA Rocquencourt                  *
6#*                                                                        *
7#*   Copyright 2010 Institut National de Recherche en Informatique et     *
8#*     en Automatique.                                                    *
9#*                                                                        *
10#*   All rights reserved.  This file is distributed under the terms of    *
11#*   the GNU Lesser General Public License version 2.1, with the          *
12#*   special exception on linking described in the file LICENSE.          *
13#*                                                                        *
14#**************************************************************************
15
16BASEDIR=../..
17
18default:
19	@$(OCAMLC) -o program.byte signals.ml
20	@./program.byte
21	@$(OCAMLOPT) -o program.native signals.ml
22	@./program.native
23
24clean: defaultclean
25	@rm -fr program.*
26
27include $(BASEDIR)/makefiles/Makefile.common
28