summaryrefslogtreecommitdiff
path: root/examples/Mkfile
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 14:05:12 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 14:05:12 +0000
commit59e5b86699b30dddbe173dac2e896764b2a88e46 (patch)
tree6c3cbb7f980b7243d4bc40224d83ba016db58889 /examples/Mkfile
parent0e4adae9299ee174fc7f364210d58da4e15c24e7 (diff)
downloadlibhubbub-59e5b86699b30dddbe173dac2e896764b2a88e46.tar.gz
libhubbub-59e5b86699b30dddbe173dac2e896764b2a88e46.tar.bz2
First cut at porting hubbub's buildsystem to the core tools
svn path=/trunk/hubbub/; revision=6837
Diffstat (limited to 'examples/Mkfile')
-rw-r--r--examples/Mkfile18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/Mkfile b/examples/Mkfile
deleted file mode 100644
index 8c5d828..0000000
--- a/examples/Mkfile
+++ /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 $@ $<
-