sanskrit-iast/Makefile

19 lines
239 B
Makefile
Raw Normal View History

2018-04-26 18:49:23 +02:00
.PHONY: main test clean
2018-04-25 14:29:11 +02:00
2018-04-26 18:49:23 +02:00
OBJS = syllable.o utf8.o transliteration.o iast.o
main: main.o $(OBJS)
$(CC) $^ -o $@
2018-04-25 14:29:11 +02:00
./main
2018-04-26 18:49:23 +02:00
test: test.o $(OBJS)
$(CC) $^ -o $@
2018-04-26 13:39:53 +02:00
./test
2018-04-26 18:49:23 +02:00
%.o: %.c
$(CC) -MMD -MP -c $< -o $@
2018-04-25 14:29:11 +02:00
clean:
2018-04-26 18:49:23 +02:00
$(RM) main test *.o *.d