summarylogtreecommitdiffstats
path: root/Make.sys
diff options
context:
space:
mode:
authorAdrian Hühn2016-09-06 17:14:34 +0200
committerAdrian Hühn2016-09-06 17:14:34 +0200
commitd7b98b924664e4f6b37ffc24df28ca7fb0fd4a89 (patch)
tree6d0822b7d68777decdebc51457a01b3bffe09510 /Make.sys
downloadaur-d7b98b924664e4f6b37ffc24df28ca7fb0fd4a89.tar.gz
first commit
Diffstat (limited to 'Make.sys')
-rw-r--r--Make.sys64
1 files changed, 64 insertions, 0 deletions
diff --git a/Make.sys b/Make.sys
new file mode 100644
index 000000000000..06a19724d1b4
--- /dev/null
+++ b/Make.sys
@@ -0,0 +1,64 @@
+#########################################################################
+#
+# System-dependent definitions suitable for compiling xcrysden using
+# a system shared libraries (needs Tcl/Tk/GL/GLU/FFTW libraries)
+#
+########################################################################
+
+
+#------------------------------------------------------------------------
+# if you have a GNU make it is better to set the MAKE variable to point
+# to gnu make
+#------------------------------------------------------------------------
+MAKE = make
+
+
+#------------------------------------------------------------------------
+# compilers & flags
+#------------------------------------------------------------------------
+CFLAGS = -ffast-math -funroll-loops -fPIC -DUSE_FONTS -pedantic -Wall -DUSE_INTERP_RESULT
+CC = gcc -g
+#LDLIB = -ldl
+MATH = -lm -lc
+
+FFLAGS =
+FC = gfortran -fdefault-double-8 -fdefault-real-8 -O2
+
+#-------------------------------------------
+#debug options
+#CFLAGS = -g
+#-------------------------------------------
+
+
+#------------------------------------------------------------------------
+# X-libraries & include files
+#------------------------------------------------------------------------
+X_LIB = -lXmu -lX11
+X_INCDIR =
+
+#------------------------------------------------------------------------
+#
+# Libraries
+#
+
+TCL_LIB = -ltcl
+TK_LIB = -ltk
+GLU_LIB = -lGLU
+GL_LIB = -lGL
+FFTW3_LIB = -lfftw3
+EXT_LIB = -lgl2ps
+# this is only used for some testing purposes
+#MESCHACH_LIB = -lmeschach
+
+#
+# Include directories
+#
+
+TCL_INCDIR = -I/usr/include
+TK_INCDIR =
+GL_INCDIR =
+FFTW3_INCDIR =
+# this is only used for some testing purposes
+#MESCHACH_INCDIR =
+
+#------------------------------------------------------------------------