hoedown/Makefile

65 lines
1.2 KiB
Makefile
Raw Normal View History

CFLAGS = -g -O3 -Wall -Wextra -Wno-unused-parameter -Isrc
2011-09-08 19:37:50 +00:00
2013-09-22 09:10:51 +00:00
ifneq ($(OS),Windows_NT)
CFLAGS += -fPIC
endif
2013-09-20 06:09:52 +00:00
HOEDOWN_SRC=\
2011-09-08 19:37:50 +00:00
src/autolink.o \
src/buffer.o \
2013-09-20 06:09:52 +00:00
src/escape.o \
src/html.o \
2013-09-21 02:57:08 +00:00
src/html_blocks.o \
2013-09-20 06:09:52 +00:00
src/html_smartypants.o \
src/markdown.o \
src/stack.o
2011-09-08 19:37:50 +00:00
2014-01-23 03:30:46 +00:00
.PHONY: all test test-pl clean
2011-04-15 08:36:46 +00:00
2013-09-21 09:57:13 +00:00
all: libhoedown.so hoedown smartypants
2011-04-15 08:36:46 +00:00
2013-09-22 09:10:51 +00:00
# Libraries
2011-04-15 08:36:46 +00:00
2013-09-21 09:57:13 +00:00
libhoedown.so: libhoedown.so.1
ln -f -s $^ $@
2011-04-15 08:36:46 +00:00
2013-09-20 06:09:52 +00:00
libhoedown.so.1: $(HOEDOWN_SRC)
$(CC) $(LDFLAGS) -shared $^ -o $@
2011-04-15 08:36:46 +00:00
2013-09-26 01:06:13 +00:00
libhoedown.a: $(HOEDOWN_SRC)
$(AR) rcs libhoedown.a $^
2013-09-22 09:10:51 +00:00
# Executables
2011-04-15 08:36:46 +00:00
2013-09-21 09:57:13 +00:00
hoedown: examples/hoedown.o $(HOEDOWN_SRC)
$(CC) $(LDFLAGS) $^ -o $@
2013-09-20 06:09:52 +00:00
smartypants: examples/smartypants.o $(HOEDOWN_SRC)
2011-04-15 08:36:46 +00:00
$(CC) $(LDFLAGS) $^ -o $@
2013-09-22 09:10:51 +00:00
# Perfect hashing
2013-09-21 02:57:08 +00:00
src/html_blocks.c: html_block_names.gperf
gperf -L ANSI-C -N hoedown_find_block_tag -c -C -E -S 1 --ignore-case -m100 $^ > $@
2013-09-22 09:10:51 +00:00
# Testing
2013-09-21 09:57:13 +00:00
2013-09-20 06:09:52 +00:00
test: hoedown
test/runner.sh ./hoedown test/MarkdownTest_1.0.3/Tests
2014-01-23 03:30:46 +00:00
test-pl: hoedown
perl test/MarkdownTest_1.0.3/MarkdownTest.pl \
2013-09-20 06:09:52 +00:00
--script=./hoedown --testdir=test/MarkdownTest_1.0.3/Tests --tidy
2013-09-22 09:10:51 +00:00
# Housekeeping
2011-04-15 08:36:46 +00:00
2013-09-21 09:57:13 +00:00
clean:
2013-09-26 00:48:59 +00:00
$(RM) src/*.o examples/*.o
2013-09-26 01:06:13 +00:00
$(RM) libhoedown.so libhoedown.so.1 libhoedown.a
$(RM) hoedown smartypants hoedown.exe smartypants.exe
2011-04-15 08:36:46 +00:00
2013-09-22 09:10:51 +00:00
# Generic object compilations
2011-04-15 08:36:46 +00:00
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<