Skip to content
Snippets Groups Projects
Commit 3071e8a6 authored by Tomáš Pecka's avatar Tomáš Pecka
Browse files

makefiles: remove debug flags

parent adf13e3f
No related branches found
No related tags found
No related merge requests found
CC=g++
EXECUTABLE=aconversion
CCFLAGS= -std=c++11 -O2 -g -c -Wall -I../alib/src -I/usr/include/libxml2/ -I../libaregexptree/src
CCFLAGS= -std=c++11 -O2 -c -Wall -I../alib/src -I/usr/include/libxml2/ -I../libaregexptree/src
LDFLAGS= -L../alib/lib -L../libaregexptree/lib -lxml2 -laregexptree -lalib -Wl,-rpath,.
 
SOURCES=$(shell find src/ -name *cpp)
......
CC=g++
LIBRARY=libalib.so
CCFLAGS= -std=c++11 -O2 -g -c -Wall -fPIC -I/usr/include/libxml2/
CCFLAGS= -std=c++11 -O2 -c -Wall -fPIC -I/usr/include/libxml2/
LDFLAGS= -shared -lxml2
 
SOURCES=$(shell find src/ -name *cpp)
......
CC=g++
EXECUTABLE=arand
CCFLAGS= -std=c++11 -O2 -g -c -Wall -I../alib/src
CCFLAGS= -std=c++11 -O2 -c -Wall -I../alib/src
LDFLAGS= -L../alib/lib -lalib -Wl,-rpath,.
 
SOURCES=$(shell find src/ -name *cpp)
......
CC=g++
LIBRARY=libaregexptree.so
CCFLAGS= -std=c++11 -O2 -c -g -Wall -fPIC -I../alib/src
CCFLAGS= -std=c++11 -O2 -c -Wall -fPIC -I../alib/src
LDFLAGS= -L../alib/lib -lalib -shared
 
SOURCES=$(shell find src/ -name *cpp)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment