Fixes for new version of Octave
[texmacs.git] / src / plugins / maxima / Makefile
blob4b5c830e37f1c1fe9f72dd98519509a4cc940ffc
2 ###############################################################################
3 # MODULE : Make file for maxima 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/maxima_filter
16 bin/maxima_filter: src/maxima_filter.c
17 $(CC) $(CPPFLAGS) $(CFLAGS) src/maxima_filter.c -o bin/maxima_filter
19 clean:
20 $(RM) bin/maxima_filter