Skip to content

Commit

Permalink
removed version from Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHiller authored Dec 1, 2022
1 parent 4ef55db commit 84b5fc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ CC=gcc
LDLIBS=-lm -lc
LDFLAGS=${LDLIBS}
FLAGS_DEBUG=-g -Wall -DDEBUG -DLOGLEVEL=0 -Wextra -Wno-unused-function
VERSION=-DVERSION="\"$(shell git log -n1 --pretty=format:%h%d) added cd_acc/do\""
#VERSION=-DVERSION="\"$(shell git log -n1 --pretty=format:%h%d) added cd_acc/do\""

#CFLAGS=-O0 -std=c11 ${VERSION} ${FLAGS_DEBUG}
#CFLAGS=-O2 -ftree-vectorize -msse2 -ftree-vectorizer-verbose=5 -std=c11 ${VERSION} ${FLAGS_DEBUG}
CFLAGS=-O3 -std=c11 ${VERSION}
CFLAGS=-O3 -std=c11

srcfiles=$(wildcard src/*.c)
objects=$(srcfiles:%.c=%.o)
Expand Down

0 comments on commit 84b5fc7

Please sign in to comment.