summaryrefslogtreecommitdiff
path: root/language/tibetan/original/src/makefile
blob: 8bc3e9f27c7169995d385b38011183462dc4ab97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
OBJECTS = tfilt.o	tparse.o	util.o	table.o

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