summaryrefslogtreecommitdiff
path: root/language/tibetan/sirlin/src/Makefile
blob: a50b73d3ec04a3c4944eff316a33ada0b8d7b4bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
OBJECTS = tfilt.o	tparse.o	util.o	table.o
##CC = gcc -Wall 
CC = cc -g 

all:		tfilt

tfilt:		$(OBJECTS)
		$(CC) -o tfilt $(OBJECTS)

tfilt.o:	tfilt.c	table.h	token.h

tparse.o:	tparse.c	table.h	token.h

util.o:		util.c	table.h	token.h

table.o:	table.c	table.h

clean:
		rm -f $(OBJECTS) core tfilt