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