Gitweb links:

...log 
http://git.netsurf-browser.org/libhubbub.git/shortlog/bc6de9c7af97c266f50a635cc4b972d3e2fd655a
...commit 
http://git.netsurf-browser.org/libhubbub.git/commit/bc6de9c7af97c266f50a635cc4b972d3e2fd655a
...tree 
http://git.netsurf-browser.org/libhubbub.git/tree/bc6de9c7af97c266f50a635cc4b972d3e2fd655a

The branch, master has been updated
       via  bc6de9c7af97c266f50a635cc4b972d3e2fd655a (commit)
      from  41b3e0e617cfce96de85d4d031c4d131e3dc4cf4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/libhubbub.git/commit/?id=bc6de9c7af97c266f50a635cc4b972d3e2fd655a
commit bc6de9c7af97c266f50a635cc4b972d3e2fd655a
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    Move makefiles that break main build on case-insensitive filesystems.

diff --git a/examples/example.mk b/examples/example.mk
new file mode 100644
index 0000000..8c5d828
--- /dev/null
+++ b/examples/example.mk
@@ -0,0 +1,18 @@
+CC := gcc
+LD := gcc
+
+CFLAGS := `pkg-config --cflags libhubbub` `xml2-config --cflags`
+LDFLAGS := `pkg-config --libs libhubbub` `xml2-config --libs`
+
+SRC := libxml.c
+
+libxml: $(SRC:.c=.o)
+       @$(LD) -o $@ $^ $(LDFLAGS)
+
+.PHONY: clean
+clean:
+       $(RM) libxml $(SRC:.c=.o)
+
+%.o: %.c
+       @$(CC) -c $(CFLAGS) -o $@ $<
+
diff --git a/examples/makefile b/examples/makefile
deleted file mode 100644
index 8c5d828..0000000
--- a/examples/makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-CC := gcc
-LD := gcc
-
-CFLAGS := `pkg-config --cflags libhubbub` `xml2-config --cflags`
-LDFLAGS := `pkg-config --libs libhubbub` `xml2-config --libs`
-
-SRC := libxml.c
-
-libxml: $(SRC:.c=.o)
-       @$(LD) -o $@ $^ $(LDFLAGS)
-
-.PHONY: clean
-clean:
-       $(RM) libxml $(SRC:.c=.o)
-
-%.o: %.c
-       @$(CC) -c $(CFLAGS) -o $@ $<
-
diff --git a/perf/example.mk b/perf/example.mk
new file mode 100644
index 0000000..7304ebb
--- /dev/null
+++ b/perf/example.mk
@@ -0,0 +1,17 @@
+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`
diff --git a/perf/makefile b/perf/makefile
deleted file mode 100644
index 7304ebb..0000000
--- a/perf/makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-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`


-----------------------------------------------------------------------

Summary of changes:
 examples/{makefile => example.mk} |    0
 perf/{makefile => example.mk}     |    0
 2 files changed, 0 insertions(+), 0 deletions(-)
 rename examples/{makefile => example.mk} (100%)
 rename perf/{makefile => example.mk} (100%)

diff --git a/examples/makefile b/examples/example.mk
similarity index 100%
rename from examples/makefile
rename to examples/example.mk
diff --git a/perf/makefile b/perf/example.mk
similarity index 100%
rename from perf/makefile
rename to perf/example.mk


-- 
HTML5 parser library
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to