diff options
| author | Jan Altenberg <jan@linutronix.de> | 2011-02-24 16:03:09 +0100 |
|---|---|---|
| committer | Jan Altenberg <jan@linutronix.de> | 2011-02-24 16:03:09 +0100 |
| commit | 219b9379d173dfc3e091bd8ef6431b26825056f5 (patch) | |
| tree | 89ea12d95ac9760238b316ec7a7ca8cf56197e46 /linux-basics/xorg-basics/Makefile | |
| parent | e32b297c4f2e9635a931e5e0e7649348eedc8e3c (diff) | |
Introduced a basic chapter about the X windows system:
XFree <-> Xorg
The X protocol
What is a Windowmanager?
Starting X
What is a Display Manager?
Diffstat (limited to 'linux-basics/xorg-basics/Makefile')
| -rw-r--r-- | linux-basics/xorg-basics/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/linux-basics/xorg-basics/Makefile b/linux-basics/xorg-basics/Makefile new file mode 100644 index 0000000..d641258 --- /dev/null +++ b/linux-basics/xorg-basics/Makefile @@ -0,0 +1,9 @@ +all: + for pdf in `ls -1 *.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 + |
