summaryrefslogtreecommitdiff
path: root/examples/Mkfile
diff options
context:
space:
mode:
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 $@ $<
-