summaryrefslogtreecommitdiff
path: root/language/tibetan/original/src/makefile.emx
blob: 15a48b1340b09ed5e14e9809760d830d34d9fc4d (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.exe

tfilt.exe:	          $(OBJECTS)
	gcc -o tfilt.exe $(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