Skip to content

Commit

Permalink
CXXFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
toroidal-code committed Apr 21, 2014
1 parent d2e4a18 commit 378223d
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 @@ -62,7 +62,7 @@ PASM := $(PASM_DIR)/pasm
$(RM) $<.i

%.o: %.cpp
$(CXX) -std=c++11 -c -o $@ $<
$(CXX) $(CXXFLAGS) -std=c++11 -c -o $@ $<

%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
Expand All @@ -71,7 +71,7 @@ PASM := $(PASM_DIR)/pasm
$(foreach O,$(TARGETS),$(eval $O: $O.o $(PIXELBONE_OBJS) $(APP_LOADER_LIB)))

$(TARGETS):
$(CXX) $(LDFLAGS) -o $@ $^ $(LDLIBS)
$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)


.PHONY: clean
Expand Down

0 comments on commit 378223d

Please sign in to comment.