summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/Kconfig5
-rw-r--r--misc/Makefile10
-rw-r--r--misc/samples/Makefile10
3 files changed, 6 insertions, 19 deletions
diff --git a/misc/Kconfig b/misc/Kconfig
new file mode 100644
index 0000000..792ba6a
--- /dev/null
+++ b/misc/Kconfig
@@ -0,0 +1,5 @@
+config MISC_XML
+ bool "XML papers"
+ default y
+ help
+ Papers about XML
diff --git a/misc/Makefile b/misc/Makefile
index 7d530a5..de1732a 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -1,9 +1 @@
-all:
- for pdf in `ls -1 handout_*.tex pres_*.tex` ; do \
- TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \
- TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \
- done
-
-clean:
- rm -f *.aux *.log *.pdf *.log *.snm *.toc *.vrb *.nav *.out
-
+obj-$(CONFIG_MISC_XML) += pres_xml-fasttrack_en.pdf
diff --git a/misc/samples/Makefile b/misc/samples/Makefile
deleted file mode 100644
index cd411f2..0000000
--- a/misc/samples/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-XML_TARGETS=xml_dom xml_sax
-XML_CFLAGS=$(shell xml2-config --cflags)
-
-all: $(XML_TARGETS)
-
-%: %.c
- $(CC) $(XML_CFLAGS) -g -O0 -l xml2 -o $@ $^
-
-clean:
- rm -r $(XML_TARGETS)