summaryrefslogtreecommitdiff
path: root/bindings/hubbub/Makefile
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-25 20:35:48 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-25 20:35:48 +0000
commit71f4a46b3a94a406530ef000420795e49d17ebf4 (patch)
tree6faf37fe516e3210ba949b1161edb606a52b52db /bindings/hubbub/Makefile
parent795caf742657a42827502ee959cb0af4c5da9970 (diff)
downloadlibdom-71f4a46b3a94a406530ef000420795e49d17ebf4.tar.gz
libdom-71f4a46b3a94a406530ef000420795e49d17ebf4.tar.bz2
First cut at a port to the new buildsystem.
DOMTS stuff currently disabled. svn path=/trunk/dom/; revision=6883
Diffstat (limited to 'bindings/hubbub/Makefile')
-rw-r--r--bindings/hubbub/Makefile76
1 files changed, 12 insertions, 64 deletions
diff --git a/bindings/hubbub/Makefile b/bindings/hubbub/Makefile
index d98565a..b575e27 100644
--- a/bindings/hubbub/Makefile
+++ b/bindings/hubbub/Makefile
@@ -1,68 +1,16 @@
-# Makefile for libdom
-#
-# Toolchain is exported by top-level makefile
-#
-# Top-level makefile also exports the following variables:
-#
-# COMPONENT Name of component
-# EXPORT Absolute path of export directory
-# TOP Absolute path of source tree root
-#
-# The top-level makefile requires the following targets to exist:
-#
-# clean Clean source tree
-# debug Create a debug binary
-# distclean Fully clean source tree, back to pristine condition
-# export Export distributable components to ${EXPORT}
-# release Create a release binary
-# setup Perform any setup required prior to compilation
-# test Execute any test cases
+ifeq ($(WITH_HUBBUB_BINDING),yes)
+ DIR_SOURCES := parser.c
-# Manipulate include paths
-CFLAGS += -I$(CURDIR) `$(PKGCONFIG) --cflags libhubbub`
+ DIR_INSTALL_ITEMS := /include/dom/bindings/hubbub:errors.h;parser.h
-# Release output
-RELEASE = ${TOP}/${COMPONENT}-libhubbub.a
+ # Hubbub
+ ifneq ($(PKGCONFIG),)
+ CFLAGS := $(CFLAGS) $(shell $(PKGCONFIG) libhubbub --cflags)
+ LDFLAGS := $(LDFLAGS) $(shell $(PKGCONFIG) libhubbub --libs)
+ else
+ LDFLAGS := $(LDFLAGS) -lhubbub -lparserutils
+ endif
+endif
-# Debug output
-DEBUG = ${TOP}/${COMPONENT}-libhubbub-debug.a
-
-# Objects
-OBJS = parser
-
-.PHONY: clean debug distclean export release setup test
-
-# Targets
-release: $(addprefix Release/, $(addsuffix .o, $(OBJS)))
- @${AR} ${ARFLAGS} $(RELEASE) Release/*
-
-debug: $(addprefix Debug/, $(addsuffix .o, $(OBJS)))
- @${AR} ${ARFLAGS} $(DEBUG) Debug/*
-
-clean:
- -@${RM} ${RMFLAGS} $(addprefix Release/, $(addsuffix .o, ${OBJS}))
- -@${RM} ${RMFLAGS} $(addprefix Debug/, $(addsuffix .o, ${OBJS}))
- -@${RM} ${RMFLAGS} $(RELEASE) $(DEBUG)
-
-distclean:
- -@${RM} ${RMFLAGS} -r Release
- -@${RM} ${RMFLAGS} -r Debug
-
-setup:
- @${MKDIR} ${MKDIRFLAGS} Release
- @${MKDIR} ${MKDIRFLAGS} Debug
-
-export:
- @${CP} ${CPFLAGS} $(RELEASE) ${EXPORT}/lib/
-
-test:
-
-# Pattern rules
-Release/%.o: %.c
- @${ECHO} ${ECHOFLAGS} "==> $<"
- @${CC} -c ${CFLAGS} -DNDEBUG -o $@ $<
-
-Debug/%.o: %.c
- @${ECHO} ${ECHOFLAGS} "==> $<"
- @${CC} -c -g ${CFLAGS} -o $@ $<
+include build/makefiles/Makefile.subdir