Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
fixed lack of CXXFLAGS in compile line
Browse files Browse the repository at this point in the history
  • Loading branch information
rontana committed Jul 11, 2013
1 parent 9bb83a5 commit 919b874
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stream_generator/Makefile
@@ -1,4 +1,4 @@
CXFLAGS = -O2 -g -Wall -std=c++0x -fmessage-length=0
CXXFLAGS = -O2 -g -Wall -std=c++0x -fmessage-length=0

OBJS = stream_generator.o

Expand All @@ -7,7 +7,7 @@ LIBS = -l boost_program_options -l boost_thread -l boost_system -l zmq -l zmqp
TARGET = stream_generator

$(TARGET): $(OBJS)
$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
$(CXX) $(CXXFLAGS) -o $(TARGET) $(OBJS) $(LIBS)

all: $(TARGET)

Expand Down

0 comments on commit 919b874

Please sign in to comment.