git-svn make executable
[texmacs.git] / src / plugins / r / Makefile
blobf9fd47c667f8c39cb0bf17aa72f5eb9e3aa43e45
2 ###############################################################################
3 # MODULE : Make file for GNU R plugin
4 # COPYRIGHT : (C) 1999-2008 Joris van der Hoeven
5 ###############################################################################
6 # This software falls under the GNU general public license version 3 or later.
7 # It comes WITHOUT ANY WARRANTY WHATSOEVER. For details, see the file LICENSE
8 # in the root directory or <http://www.gnu.org/licenses/gpl-3.0.html>.
9 ###############################################################################
11 CC = gcc
12 RM = rm -f
14 all: bin/tm_r
16 bin/tm_r: src/tm_r.c
17 $(CC) $(CPPFLAGS) $(CFLAGS) -I../../src/System src/tm_r.c -o bin/tm_r -lutil
19 clean:
20 $(RM) bin/tm_r