sanskrit-iast/Makefile

13 lines
205 B
Makefile
Raw Normal View History

2018-04-26 13:39:53 +02:00
.PHONY: all test clean
2018-04-25 14:29:11 +02:00
all:
2018-04-25 18:11:56 +02:00
$(CC) main.c syllable.c utf8.c transliteration.c iast.c -o main
2018-04-25 14:29:11 +02:00
./main
2018-04-26 13:39:53 +02:00
test:
$(CC) test.c syllable.c utf8.c transliteration.c iast.c -o test
./test
2018-04-25 14:29:11 +02:00
clean:
$(RM) -f main