sanskrit-iast/Makefile

23 lines
315 B
Makefile
Raw Normal View History

.PHONY: main test install uninstall clean
2018-04-25 14:29:11 +02:00
2018-04-28 13:54:25 +02:00
OBJS = syllable.o utf8.o transliteration.o iast.o iast-czech.o
2018-04-26 18:49:23 +02:00
iast: main.o $(OBJS)
2018-04-26 18:49:23 +02:00
$(CC) $^ -o $@
2018-04-25 14:29:11 +02:00
test: iast
2018-05-03 19:13:34 +02:00
sh tests/test.sh
2018-04-26 13:39:53 +02:00
2018-04-26 18:49:23 +02:00
%.o: %.c
$(CC) -MMD -MP -c $< -o $@
install:
install -m 0755 iast /usr/bin
uninstall:
rm -f /usr/bin/iast
2018-04-25 14:29:11 +02:00
clean:
$(RM) iast *.o *.d