sanskrit-iast/Makefile
2018-04-26 13:39:53 +02:00

12 lines
205 B
Makefile

.PHONY: all test clean
all:
$(CC) main.c syllable.c utf8.c transliteration.c iast.c -o main
./main
test:
$(CC) test.c syllable.c utf8.c transliteration.c iast.c -o test
./test
clean:
$(RM) -f main