summaryrefslogtreecommitdiff
path: root/language/tibetan/sirlin/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'language/tibetan/sirlin/src/Makefile')
-rw-r--r--language/tibetan/sirlin/src/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/language/tibetan/sirlin/src/Makefile b/language/tibetan/sirlin/src/Makefile
new file mode 100644
index 0000000000..a50b73d3ec
--- /dev/null
+++ b/language/tibetan/sirlin/src/Makefile
@@ -0,0 +1,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
+