summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/generic/pgf/c/config/MakefileConfig.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/generic/pgf/c/config/MakefileConfig.mk')
-rw-r--r--Master/texmf-dist/source/generic/pgf/c/config/MakefileConfig.mk45
1 files changed, 45 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/generic/pgf/c/config/MakefileConfig.mk b/Master/texmf-dist/source/generic/pgf/c/config/MakefileConfig.mk
new file mode 100644
index 00000000000..25310b6987b
--- /dev/null
+++ b/Master/texmf-dist/source/generic/pgf/c/config/MakefileConfig.mk
@@ -0,0 +1,45 @@
+
+# Where Lua is installed
+LUAPATH=/usr/local/lua52
+
+LUAINCLUDES = $(LUAPATH)/include
+LUALIBPATH = $(LUAPATH)/lib
+
+
+# Where ogdf is installed
+OGDFPATH=/usr/local/ogdf
+
+OGDFINCLUDES = $(OGDFPATH)
+OGDFLIBPATH = $(OGDFPATH)/_release
+
+
+# Where the pgf C includes are found
+PGFINCLUDES=../../../..
+
+
+# Where the shared libraries should be installed (base dir)
+INSTALLDIR=/usr/texbin/lib/luatex/lua
+
+
+# If you need special flags:
+MYCFLAGS=
+MYLDFLAGS=
+
+# Link flags for building a shared library
+SHAREDFLAGS=
+
+# Link flags for linking against the shared Lua lib
+LINKSHAREDLUA=
+
+# Architecture flags:
+ARCHFLAGS=
+
+# The to-be-used compiler
+CC=gcc
+
+
+# Now read local definition, which may overwrite the above
+-include $(CONFIGDIR)/LocalMakefileConfig.mk
+
+
+