We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd31b61 commit f652ad3Copy full SHA for f652ad3
Makefile
@@ -1,11 +1,15 @@
1
.POSIX:
2
+.SUFFIXES:
3
4
CC = gcc
5
FC = gfortran
6
AR = ar
-DEBUG = #-g -O0 -Wall -fmax-errors=1
7
-CFLAGS = $(DEBUG) `pkg-config --cflags lua-5.4`
8
-FFLAGS = $(DEBUG) -std=f2008 `pkg-config --cflags lua-5.4`
+
+DEBUG = -g -O0 -Wall -fmax-errors=1
9
+RELEASE = -O2 -march=native
10
11
+CFLAGS = $(RELEASE) `pkg-config --cflags lua-5.4`
12
+FFLAGS = $(RELEASE) `pkg-config --cflags lua-5.4`
13
ARFLAGS = rcs
14
LDFLAGS = `pkg-config --libs-only-L lua-5.4`
15
LDLIBS = `pkg-config --libs-only-l lua-5.4`
0 commit comments