blob: 3109524e40748ed66d47da0fa460f9e0f54e6b2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
###############################################################################
# MODULE : Make file for opeenaxiom plugin
# BY : Joris van der Hoeven
# COPYRIGHT : This software falls under the GNU general public license;
# see the file 'LICENSE', which is provided with this package.
###############################################################################
CC = gcc
RM = rm -f
all: bin/tm_openaxiom
bin/tm_openaxiom: src/tm_openaxiom.c
$(CC) src/tm_openaxiom.c src/texbreaker.c -o bin/tm_openaxiom
clean:
$(RM) bin/tm_openaxiom
|