1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# From the top level:
#
# make -C perf -f example.mk clean
# make -C perf -f example.mk
# time ./perf/libxml2 ~/Downloads/html5.html
# time ./perf/hubbub ~/Downloads/html5.html
all: libxml2 hubbub
CC = gcc
CFLAGS = -W -Wall --std=c99
LIBXML2_OBJS = libxml2.o
libxml2: libxml2.c
libxml2: CFLAGS += `pkg-config libxml-2.0 --cflags`
libxml2: $(LIBXML2_OBJS)
gcc -o libxml2 $(LIBXML2_OBJS) `pkg-config libxml-2.0 --libs`
HUBBUB_OBJS = hubbub.o
hubbub: hubbub.c
hubbub: CFLAGS += `pkg-config --cflags libparserutils libhubbub`
hubbub: $(HUBBUB_OBJS)
gcc -o hubbub $(HUBBUB_OBJS) `pkg-config --libs libhubbub libparserutils`
.PHONY: clean
clean:
$(RM) hubbub $(HUBBUB_OBJS)
$(RM) libxml2 $(LIBXML2_OBJS)
|