diff options
Diffstat (limited to 'talk/Makefile')
-rw-r--r-- | talk/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/talk/Makefile b/talk/Makefile new file mode 100644 index 0000000..6e3c989 --- /dev/null +++ b/talk/Makefile @@ -0,0 +1,10 @@ +all: en.tlk + +en.tlk: talk.po sc + ./po2talk --compress $< $@ + +sc: sc.c + gcc -O2 -Wall -o $@ $< + +clean: + rm -f sc *~ |