summaryrefslogtreecommitdiff
path: root/Makefile.sample
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.sample')
-rw-r--r--Makefile.sample53
1 files changed, 53 insertions, 0 deletions
diff --git a/Makefile.sample b/Makefile.sample
new file mode 100644
index 0000000..da14ca9
--- /dev/null
+++ b/Makefile.sample
@@ -0,0 +1,53 @@
+# Author: Jose A Ortega Ruiz <jao@member.fsf.org>
+# Start date: Mon Jan 06, 2003 01:15
+#
+# Copyright (C) 2003, 2009 by Jose Antonio Ortega Ruiz
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+
+# document languages (comma separated)
+# NW_LANGUAGES = spanish
+
+# The name of the main tex file to be created
+# NW_MAIN = main
+
+# File containing the main tex file contents (included nw files loaded with
+# \input)
+# NW_CONTENTS = contents.tex
+
+# The document class for the main tex file
+# NW_DOCUMENT_CLASS ?= report
+
+# Files \input in the main file before noweb ones (listed in NW_CONTENTS)
+NW_PRE_TEX = intro.tex
+# Files \input in the main file after noweb ones (listed in NW_CONTENTS)
+NW_POST_TEX = index.tex
+
+# List of dirs to recurse into
+NW_SUBDIRS = .
+
+# Line format flag to noweb
+# NW_LINEFORMAT = -L"\# %L \"%F\" %N"
+NW_LINEFORMAT =
+
+# Location of noweb.mk
+NW_MAKEFILE = noweb.mk
+
+include $(NW_MAKEFILE)
+
+# Your all target here. noweb.mk provides: tangle, weave, dvi, html, clean
+all: tangle weave
+